Posts

Showing posts from July, 2017

How to Add a “Back To Top” Button to Any Blog (Blogger, WordPress)

Having a lot of content means a lot of scrolling. It helps to make things a little easier for your readers if you include an easy way to jump all the way back to the top of the page. Adding a Back To Top button can easily solve scrolling issues and is really simple to implement! I’ve included a really easy Back To Top button here for you that you can add to any website or blog. All you need to edit are the theme’s CSS file and the main HTML template file. Add a Back To Top button to your site: To get started, add this to the CSS section of your site. In Blogger, this would be under Template > Customize > Advanced > CSS. In WordPress this is your theme’s style.css file. .back-to-top {     display:none;     position: fixed;     bottom: 2em;     right: 0px;     text-decoration: none;     color: #000000;     background-color: rgba(235, 235, 235, 0.80);     font-size: 12px;     padding: 1em;     } .back-to-top:hover {         background-color: rgba(135, 135, 135, 0.50);     t