Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #250983

    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.

    Scroll on blank template

    #250985

    Note : the problem coming when using the sticky header.

    #251024

    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

    #251637

    Hi,

    The problem is the same as this topic > https://kriesi.at/support/topic/blank-template-empy-header/
    (:

    #251939

    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

    #252985

    Great (:
    Thank for your help
    Have a nice day ^^

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Scroll problem on blank template’ is closed to new replies.