Hide go to Top Button in CSS

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;
}

 

Related Posts

Yes, JetPack will slow down your website!

If you are wondering if the WordPress plugin named jetpack will slow down your website or not, you are right to assume that it will 👍 Atleast…

Easily Integrate Stripe Payment Gateway in PHP for Any Website

Introduction: In today’s digital world, accepting online payments securely is crucial for businesses. Stripe, a popular payment gateway, provides a reliable and user-friendly platform for processing payments….

How to build API for your Website?

Are you looking to improve the functionality of your website and enhance your users’ experience? One effective way to do this is by integrating an API, or…

How to create a Database in MYSQL using PHP

Creating a database in MySQL using PHP is a common task that many web developers need to do. A database is a collection of data that is…

HTML Redirect to Other Web Page Automatically

How to redirect to another web page with html code Redirecting a page to another page is simple, you can use the below code to do that,…

PHP Array to JavaScript Array

How to convert PHP array to JavaScript array The code below can convert your php array to JavaScript array

Leave a Reply

Your email address will not be published. Required fields are marked *