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

    Hello
    Please look at those screenshot from my iPhone 6 :
    Safari >
    Safari

    Chrome >
    Chrome

    As you can see, the animated white arrow that indicate there is something to see below the Color Section is not visible, it’s only show up if I scroll down a little bit :
    Arrow

    Thanks

    #455383

    Hey pako69!

    Thank you for using Enfold.

    Add this to the Quick CSS field to adjust the position of the link:

    @media only screen and (max-width: 767px) {
    #top .scroll-down-link {
      bottom: 140px;
    }}

    Regards,
    Ismael

    #455419

    Hello Ismael
    Thank you for the quick fix.
    Bus as I am usin an H1 Tag just on top of this arrow I must do that:
    .home .av-special-heading-h1 {top: 15% !important; position: absolute !important;}
    otherwise the arrow goes into the H1

    I have a lot of site with this issue and don’t you think it’s a little bug about how Enfold is calculating the viewport when using full height elements?

    Thanks

    #455855

    Hey!

    Alright. Try to edit js > shortcodes.js, look for this code around line 2207:

    subtract.each(function(){ wh100_mod -= this.offsetHeight - 1; });
    
    			var whCoverMod	= (wh100_mod / 9) * 16;

    Below, you can add this code:

    var mobileheader = $('.responsive #top #wrap_all #header');
    
          if(mobileheader.css('position') == 'relative') {
            wh100_mod = wh100_mod - mobileheader.height();
          }

    Best regards,
    Ismael

    #456297

    Well… I’ll try but modify Enfold core files is not a good thing as any fix will be erased by any update.
    If it is a real probleme it might be good to include it in a next release, don’t you think?
    Thanks

    #456433

    Hi!

    I’ll ask Kriesi to take a look into it. For the meantime, you can use the first code or you can try that one.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘The Color Section animated down arrow is not visible on mobile’ is closed to new replies.