• There are 3 pages that I don’t want the footer text to show up on so I was wondering if there is a way to turn off the footer text on those pages specifically. What I can’t figure out is how can I set it up so that I can make ” display: none; ” be coded into the code below so that the footer wrapper can be turned off on specific pages, for example my Clients page, https://fidesinfosys.com/Development/clients/.

    I found that the footer text area is found in the following code

    #st-footer-wrapper {
        font-size: 0.75rem;
        line-height: 1.188rem;
        min-height: 20px;
    }

    If anyone can help me figure this out that’ll be greatly appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I think I have an answer for you, if you add the body class to your footer selector you will be able to show/hide it for different pages. So it may look like this, just add a rule for every page you don’t want it to show up on:

    #st-footer-wrapper {
        font-size: 0.75rem;
        line-height: 1.188rem;
        min-height: 20px;
    }
    
    .page-id-458 #st-footer-wrapper {
        display: none;
    }
    Thread Starter Kaoskuri

    (@kaoskuri)

    That worked perfectly. Thanks so much for sharing that. Now I can use that and have it work on the other pages that need this as well. Thanks again. You just made my day. =)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to turn off Footer on select pages (2 posts)’ is closed to new replies.