• Resolved lightandshadows

    (@lightandshadows)


    For some reason I can’t get rid of the scroll to top arrow. It only shows on full screen and not mobile. I have gone through every plugin to see if there is a setting there but can’t find anything. The only place where I can see this option is in Catch Web Tools but it’s not activated and the arrow is different.
    Any help would be much appreciated.
    Thanks

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Kevin

    (@jx-3p)

    Hey,

    this requires a bit of custom CSS:

    div#topcontrol {
        display: none;
    }

    Add that to Theme Options> Advanced Settings, and the arrow should be hidden.

    -Kevin

    Thread Starter lightandshadows

    (@lightandshadows)

    Nice one Kevin.
    Now for the next puzzle. How can I get it to show on mobile devices?

    Kevin

    (@jx-3p)

    Try wrapping it in a media query, like this:

    @media (min-width: 992px) {
    div#topcontrol {
        display: none;
        }
    }

    -Kevin

    Thread Starter lightandshadows

    (@lightandshadows)

    Still not showing. Using Catch Web Tools. It’s active on there with a width of 640px. It shows on full screen but not mobile. Strange.

    Thread Starter lightandshadows

    (@lightandshadows)

    Sorted it. Mobile contact bar at bottom was covering it.
    Thanks for your help.

    Kevin

    (@jx-3p)

    Glad you figured it out! Let me know if you need any further assistance with this.

    -Kevin

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Scroll to top’ is closed to new replies.