• Resolved nobuhlesibusiso

    (@nobuhlesibusiso)


    Hello. Is there a way to remove the logo and tagline that is displayed site-wide from specific pages?

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • hannah

    (@hannahritner)

    Hi,
    Yes! You can do this using the page id and css. So it would look like this:

    .page-id-64 div#logo {
        display: none;
    }

    Let me know if you need help determining the page id.

    Kindly,
    Hannah

    Thread Starter nobuhlesibusiso

    (@nobuhlesibusiso)

    Thank you. I have a plugin that allows me to see my page IDs in the pages list, and this code worked like a charm.

    hannah

    (@hannahritner)

    Oh good! Happy to help!

    Best,
    Hannah

    Thread Starter nobuhlesibusiso

    (@nobuhlesibusiso)

    Hello again.

    I know we resolved this issue, but now I’m wondering, how can I hide the logo and tagline from ALL pages except the home page? I’m thinking this way the “above the fold” portion of most of the website wouldn’t be the header stuff only.

    Please kindly advise.

    hannah

    (@hannahritner)

    Hey,
    Try using this css:

    div#logo {
        display: none;
    }
    .home div#logo {
        display: block !important;
    }

    Does that work as you’re wanting?

    Kindly,
    Hannah

    Thread Starter nobuhlesibusiso

    (@nobuhlesibusiso)

    THat did the trick! Thanks so much!

    hannah

    (@hannahritner)

    Happy to help!

    Best,
    Hannah

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Hide Site Logo from specific pages’ is closed to new replies.