• Resolved mbh66

    (@mbh66)


    Greetings, our theme is unfortunately no longer supported, but we still want to continue using it, which is why I’m asking for help here.

    I understand how to use CSS to remove the header image from a specific page, however I am struggling to find the correct CSS class.

    This is what I have currently in custom CSS:
    .page-id-391 .site-branding {
    display: none;
    }

    I have tried every possible class I can find from inspecting the element, but nothing seems to work.
    Can anyone perhaps tell me what I’m missing?

    Thank you so much!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The image is added to the background of the class .site-header

    You can use the below CSS if you don’t want any image in the header background.
    .site-header{
    background: none;
    }

    If you add the code into the Additional CSS of WordPress, it will remove header from each and every page which uses the same class for the background. https://prnt.sc/ugojyu

    Thread Starter mbh66

    (@mbh66)

    Thanks Jafor, but this is not what I wanted to do. Have decided to go with a custom page template instead. Thanks for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Trouble finding CSS class to remove header image from a specific page’ is closed to new replies.