Hi,
I’m trying to remove the title from a single portfolio post. I’ve tried the following CSS, but neither has worked. I’ve also checked and it’s not a caching issue. Can you please advise?
.single-x-portfolio .x-header-landmark {
display: none;
}
and I’ve tried
.single-x-portfolio .x-header-landmark {
display: none !important;
}
Alternatively, I’ve tried to format the current title with intermittent success. I’d like to change the font to Alfa Slab One (which I’m using in other areas of my site). I added this CSS
h1.entry-title.entry-title-portfolio {
color: #333333;
font-family: ‘Alfa Slab One’ !important;
font-size: 3em;
letter-spacing: .07em;
}
Which displayed correctly in the builder, but then displayed as a boring serif font when I viewed the page. Then I refreshed the builder and it changed to the boring serif as well. Is there a way to update the font for just the portfolio title (not all h1 tags across the site)?
Lastly, how can I remove just the date from the meta data?
Thanks,
Ashley
