Scroll To Top & Superfly Menu issue

Hello,

Our Superfly Menu is interfering with our scroll to top arrow.

I was able to fix it in the browser css but when I implement the CSS it doesn’t work.

I also referenced this support thread.

body .x-scroll-top {
z-index: 99999999;
}

https://www.visitsimivalley.com

Please help me to get this up arrow clickable.

Thanks!

Hi There,

The scroll to top button is working fine on my end:

Please clear all the caches and check again.

Thank you.

Please try it on a mobile device. it works fine on desktop and is broken on mobile display below 979px.

Micah

Hello Micah,

The code should have worked but then you added this:

@media (min-width:979px){
  .sfm-theme-none{
    display:none !important;
  }
}
}

body .x-scroll-top{
  z-index:99999999;
}

Please have it updated and use this instead:

@media (min-width:979px){
  .sfm-theme-none{
    display:none !important;
  }
}

body .x-scroll-top{
  z-index:99999999;
}

The error is because of the extra closing curly brace in the code.

Please let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.