Viewing 12 replies - 1 through 12 (of 12 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section in the dashboard named, “Custom CSS”, “Custom Styles” or “Jetpack”, or do you have a Child Theme?

    Thread Starter uepsilon

    (@uepsilon)

    no, nothing of these things

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you provide the webpage with the header image you want hidden?

    Thread Starter uepsilon

    (@uepsilon)

    Thread Starter uepsilon

    (@uepsilon)

    the header image is displayed at the archive page and I want to remove it

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Download and install this Custom CSS Manager plugin and in its allocated section of the dashboard, enter this;

    .post-type-archive header img {
     display: none;
    }

    I’ve envisaged you’ll have some issues with your search bar overlapping the navigation bar as there is not enough space for it with the header image gone.
    Perhaps you could try adding this CSS;

    .post-type-archive #branding hgroup {
     margin-bottom: 3%;
    }

    Thread Starter uepsilon

    (@uepsilon)

    You are my hero guy!
    Thank you.

    Is it possible to diplay rhe logo again?

    Thread Starter uepsilon

    (@uepsilon)

    I just want to remove the image but not the logo 🙂

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Sure, amend my first snippet of code to this;

    .post-type-archive header ~ a img {
     display: none;
    }

    Thread Starter uepsilon

    (@uepsilon)

    doesn’t worked guy.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Sorry, I meant this;

    .post-type-archive header hgroup ~ a img {
     display: none;
    }

    I don’t think you need this second bit of code anymore;

    .post-type-archive #branding hgroup {
     margin-bottom: 3%;
    }

    Thread Starter uepsilon

    (@uepsilon)

    You made my day!!!
    You are the hero of the week!

    Thank you so much!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘remove header from archive twentyeleven’ is closed to new replies.