• Is there a way to remove the “back to top” link from the bottom of the page? There is only one page that I REALLY need to remove it from, so the ideal would be to remove it from a single page. But I don’t mind eliminating it from all of my pages if need be.

Viewing 1 replies (of 1 total)
  • @nikeo provided a number of classes:
    .home = Front Page
    .blog = Posts Page
    .page = Other Pages
    .page-id-n = Selected Page

    So you need to identify the page you want to change, F12 will show you the source code and it will be on the <body> tag.

    Then use this with your page:

    .page-id-xx .back-to-top {
      display: none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Remove "back to top" link at the bottom of the page?’ is closed to new replies.