Site logo

Archived topic

Scroll back to top button obscured

3 replies · Started by Ian on October 14, 2021

Viewing posts 1–4 of 4

The scroll back to the top button that appears once you scroll down the page seems to be obscured by something in the footer? Andy idea what could be causing this?

Hi Ian,

You have an wpautoterms-footer class element blocking the footer coming from a third party plugin.

It has z-index: 10000002; which is higher than the scroll to top button, causing it to overlay on top of it, effectively blocking it.

The quick and easy solution is by overriding this CSS with this:

.wpautoterms-footer {
    z-index: 1;
}

But I'm not exactly sure if there's a UI setting for this within the plugin. If there is one, it's better to do it there. :D

That did the trick. Thanks Elvin :)

No problem. :D

This archived topic is closed to new replies.