Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #628343

    Hi there,
    Can I disable the scroll down arrow for mobile devices? It’s not needed there, only for the large screen.

    Thanks you!
    Shanna

    #628349

    Hi shannab!

    Please add to your custom CSS

    .scroll-down-link { display: none; }

    let us know if that works as needed

    Best regards,
    Basilis

    #628357

    Hi Basilis,

    Thanks for the quick reply..
    That removes it entirely. I’m trying to remove it only for mobile devices because it’s just not needed there. If possible it would be good to put that custom .css only on the pages where the scrolling button is an issue.

    Otherwise the .css needs to be directed only towards mobile devices throughout the site. Possible?

    Shanna

    #628887

    Hello,.. anyone know how to do this??
    Shanna

    #629388

    Hi,

    Please change the code to following one

    @media only screen and (max-width: 480px) {
    .scroll-down-link { display: none; }}

    Best regards,
    Yigit

    #630004

    That worked Yigit! Thanks!!

    shanna

    #630500

    Hi,

    Great, glad we could help :-)

    Thanks,
    Rikard

    #1340784

    Hi Kriesi Team,

    I use the following code to hide the scroll arrow :

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

    But it doesn’t hide the arrow on mobile, so I tried the following code :

    @media only screen and (max-width: 480px) {
    .scroll-down-link { display: none; }}

    But it still doesn’t work.
    Can you help me please, I want to remove the scroll down arrow on all devices
    Thanks in advance

    Best regards

    Nat

    #1340829

    Hi,
    Thanks for the link to your site, in your cache plugin file to have this css:

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

    so you either need to clear your cache plugin or you need to remove this from your css stylesheet, try checking your Child Theme Stylesheet, the General Styling ▸ Quick CSS field, and the WordPress ▸ Customize ▸ Additional CSS field
    if you don’t see this rule in any of those places, then clear and disable your wp-rocket and your browser cache and check again.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    #1340918

    Hi Mike,

    Thanks a lot, everything is working fine

    You are Great !

    Best regards,
    Nat

    #1341008

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Remove scroll down arrow on mobile’ is closed to new replies.