Hello Guys,
I just downloaded the Ambrosia theme and I´m having a hard time customizing it, specifically with the parallax elements.
The issue is that the parallax elements are out of position leaving a grey gap over the image. The other thing is that the demo image doesn´t fill the 100% of the width.
I had uploaded the one-page template as I received in the zip so you can see the issues I´m talking about:
http://www.avantpix.net/prototipo/slabon/index-onepage.html
Appreciate your assistance.
Best,
Fernando
Hello,
I found a fix at the parallaxInit() function of the script.js files on another post at this forum and my parallax elements are now working fina. You should fix this on the template files youre selling.
Thanks,
Hi,
You forgot "( )" in code isMobile.iOS:
source: ../js/script.js
you must be added to it. Then, parallax element run corrected
I´ll just use these:
function parallaxInit() {
$('.awe-parallax').each(function() {
if (isMobile.any()) {
$(this).css('background-attachment', 'scroll');
} else {
$(this).parallax("50%", 0.1);
}
});
}
Thanks