hello,
i use
.entry-title {
display: none;
}
in my twenty eleven child themes style.css
to hide entry titles on my pages but this also hides post titles which i want to keep displaying
how do i achieve that?
hello,
i use
.entry-title {
display: none;
}
in my twenty eleven child themes style.css
to hide entry titles on my pages but this also hides post titles which i want to keep displaying
how do i achieve that?
hope code below works, untested directly.
.type-post .entry-title {display:block;}
.type-page .entry-title {display:none;}works! thank you
This topic has been closed to new replies.