Headline issue on main page
-
Hey there,
I got help with this article. According to the theme’s style sheet, the headline is always capitalized, but that looks weird with the “1990er” (German for 90’s): “1990ER” So I was able to transform the headline with this css code:
.wf-active .postid-3741 #primary-header .entry-title { text-transform: none; }However, this code works on the specific page, but not on my blog’s overview. Here, the “1990ER” has not been touched.
Is there a way to change the two letters “ER” into lower cases as well?
Thanks guys,
The blog I need help with is: (visible only to logged in users)
-
Hi there, let’s change the CSS selector a bit and add another one to take care of the main page. Replace what you have for the text transform rule with this and see what you think. In my texting it takes care of it on the main page as well as on the page when you click through to the single post.
.post-3832 .entry-title, .postid-3832 .entry-title {
text-transform:none !important;
}` -
Hey there! Thanks, I just added your code without replacing the old one and it works on both, the main page as well as the single post page.
Thanks a lot!
-
- The topic ‘Headline issue on main page’ is closed to new replies.