Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #571598

    Hi guys,

    I have the latest WP and theme installed in my staging environment.
    It seems to be there but it is not clickable. Would you be able to give me some solutions? Sorry, it’s in staging.
    scroll top

    #571599

    I’ve added the following to my child css / style

    #scroll-top-link.avia_pop_class {
        opacity: 0.7;
        visibility: visible;
    }
    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
      display: block !important;
        }
    }
    #571643

    Hey!

    We are going to need to inspect elements to provide you an accurate solution unfortunately. Please let us know when you launch your website and we will look into it

    Cheers!
    Yigit

    #571824

    In the meantime, can I disable this feature? What’s the best way to do so? Just use css?
    I don’t see any errors in the console.

    I will see if I can add a custom jQuery scroll to top. Just add the html into the child/footer.php and hook the css and jQuery?

    #571833

    Well, basically I chose the option of a sticky header / menu.
    Is this why the scroll to top is hidden?

    How would I show it on tablets and mobiles though

    I noticed that this forum has the scroll to top function and sticky menu combined.

    • This reply was modified 8 years, 11 months ago by avwebmaster.
    #572669

    Hey!

    Please use the below css in quick css it looks like the background color is missing

    
     #scroll-top-link {
        background-color: #333333!important;
    }
    

    To remove the button

    
    #scroll-top-link {display: none; }
    

    Regards,
    Vinay

    #572977

    Hi Vinay,

    Thanks but it does not seem to work. I tried adjusting the z-index to 9999 !important and does not do the trick.

    #572985

    Hey!

    If you would like to temporarily disable it, please add following code to Quick CSS

    #scroll-top-link { display: none !important; }

    Regards,
    Yigit

    #573290

    I know… I even tried using plugins (scroll to top) and all of them were hidden!!! I don’t know why. maybe the containers / sections were above it?

    #574438

    Hi!

    We cannot say exactly what is the issue without inspecting the element.

    Please share the shortcode for the page
    To view shortcode in default editor enable debug mode as shown in the link below
    http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    If we can re-produce the same on our end with shortcode we can help you.

    Best regards,
    Vinay

    #577923

    Hi Vinay,

    So I found out that the element

    html.responsive, .responsive body {
        overflow-x: hidden; 
    }

    I turned it off and the scroll to top link button appeared.
    What css value should I use except hidden? I just wanted to make sure it won’t break the layout.

    #578521

    Hey!

    Since we cannot view the site it’s a shot in the dark…
    but let me tell you overflow:hidden; will hide the elements that appear outside the div container
    overflow:auto will make the content scrollable

    Try the below code in Quick CSS
    If this don’t solve the issue please use hidden in place of auto in the below code.

    
    html.responsive, .responsive body {
        overflow-x: auto!important; 
    }
    

    Best regards,
    Vinay Kashyap

    #578562

    Hi Vinay,

    html.responsive, .responsive body {
        overflow-x: visible !important;
    }

    This value seems to be working. I tried auto but it hides the scroll to top link.

    #578823

    Hey!

    Happy you got it fixed :)
    Please feel free to get in touch with us if you have any questions.

    Thank you for using Enfold :)

    Cheers!
    Vinay Kashyap

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Missing #scroll-top-link’ is closed to new replies.