can't seem to override theme's entry-title text-transform settings
-
I just adopted the Origin theme, and I have custom CSS. I would like to turn off the all caps that the theme insists on defining for entry headings. So I put the following in my custom CSS:
h2.entry-title {
text-transform:none;
}But it doesn’t seem to do anything, no matter what I set text-tramsform to. On the other hand, other changes like font-weight:bold work fine. Any idea what I’m doing wrong? Thanks!!
The blog I need help with is: (visible only to logged in users)
-
Hi, inspecting that element with my web inspector, you are ever so close. We just need to make a slight adjustment to the CSS selector like this.
.hentry .entry-title { text-transform: none; } -
Thanks so much. Now I am trying to change the color of the heading text. I put
color: blue;
in the .hentry .entry-title code, but nothing happens (same with other colors). Can you tell me what I’m doing wrong here?
-
There are actually two places the color is set for the entry title, which is a bit strange. Change the CSS selector on that rule to this.
.hentry .entry-title, .hentry .entry-title a -
-
- The topic ‘can't seem to override theme's entry-title text-transform settings’ is closed to new replies.