Tagged: blank template, parallax, scroll
Hello,
As you can see on this screenshot, i have a little problem when unsign the blank template.
Scroll the content stops at the bottom of the usual menu location.
In fact, the previous image remains visible, which is not pretty.
How can I change this?
Thank you.
Note : the problem coming when using the sticky header.
Hi!
Thank you for using the theme.
As of now, I’m not sure if I understand the issue correctly. We would like to see the actual website. We will give you a proper response once we have a better understanding of the issue. Thanks!
Cheers!
Ismael
Hi,
The problem is the same as this topic > https://kriesi.at/support/topic/blank-template-empy-header/
(:
Hi!
Thank you for the info.
Please edit js > avia.js, find this code on line 614:
if(tempPadding > 0 && shrink)
{
tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2;
}
else
{
tempPadding = tempPadding + non_shrinking + non_shrinking2;
}
Replace it with:
if(tempPadding > 0 && shrink && !$('body').hasClass('page-template-template-blank-php'))
{
tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2;
}
else if ( $('body').hasClass('page-template-template-blank-php') )
{
tempPadding = non_shrinking + non_shrinking2;
}
else
{
tempPadding = tempPadding + non_shrinking + non_shrinking2;
}
I hope that helps.
Regards,
Ismael
Great (:
Thank for your help
Have a nice day ^^