How to hide go to top button in CSS
The go to top button can be used to go to the top section of your website quickly. But sometimes, we might need hide it or we just don’t want it on our website, in that case, we can easily hide it with a few lines of css code.
This code will also be useful if you use a custom theme for your WordPress website and it doesn’t have the option to hide it.
Full CSS code to Hide ” jump to top Button “
a#scroll-up { display: none; !important; }