.x-header-landmark issue

Have tried removing the .x-header-landmark and the entry icon on the title but they don’t seem to disapear when I enter the CSS into the customizer. Have tried the following:

.x-header-landmark {
display: none;
}

and

.entry-title:before {
display: none;
}

Site is: https://happymammoth.co

Need to remove the blog and post header and the entry icon on the blog and post headings.

Thanks :slight_smile:

@designerken

Thanks for helping

@matthewmurphyau

You can try this code instead

.blog .x-header-landmark,
.single-post .x-header-landmark {
    display:none;
}

.blog .entry-title:before,
.single-post .entry-title:before {
    display:none;
}

Hope that helps.

Hey @paul.r - thanks so much for this! That CSS still doesn’t work though

Hi There,

Paul’s code is good, the issue is you have miss one closing bracket on your @media query block.

screenshot

Please add the closing bracket, then put Paul’s code.

Cheers!

@friech - thanks so much for pointing that out. Was going crazy trying to figure out what it was. Thanks again. Much appreciated :slight_smile:

You’re more than welcome, glad we could help.

Cheers!