Change header words for Featured Post
-
Scared Path has helped me to change the size of the header for my featured (sticky) posts (Twenty-Eleven theme) using the following css
.wf-active h1.showcase-heading {
font-size: 14px;
font-weight: 400;
}How do I change the words in the featured post header from “Featured Post” to something else? I assume that I will have to add a line to the above css, but my attempts have thus far failed.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
It’s a bit more complicated than that. Try this:
.featured-posts .showcase-heading { color: transparent; font-size: 0 !important; } .featured-posts .showcase-heading:after { color: #666666; content: "YOUR ALTERNATIVE HERE"; font-size: 14px !important; line-height: 2.6em; } -
justpi,
Thanks for the help. It works great, although notice that now my “Recent Posts” header on the home page, below my featured post header, is smaller.Given the new css, how to I increase the font size for this header?
-
- The topic ‘Change header words for Featured Post’ is closed to new replies.