I’ve used a few bits of custom css to modify little things:
.hentry {
-webkit-hyphens: manual;
-moz-hyphens: manual;
hyphens: manual;
}
.home .entry-header { display: none; }
#feature-slider {
display: block;
position: relative;
padding-bottom: 10px;
overflow: hidden;
z-index: 101;
}
.home .site-content { display: none; }
The problem is, the instruction to hide the “Home” page title also hides the titles for my featured content.
If I remove this instruction:
}
.home .entry-header { display: none; }
I get my featured content titles back, but I get an ugly white block at the bottom of the page with “Home” in it. The instruction not to display home page content is ignored. How can I fix this?
To clarify: I want to hide the Home title, but keep the featured content titles.
I’d also like to add space – say 20 px – between the promo headline and the featured content. Is that possible?
Thanks