Navigation title reverts after custom edit
-
I changed the font-style of h1 recent posts to italic and after I cancel out of custom edit the font-style: italic reverts to how it looked before the italic style was applied. This is the code, did I apply it correctly?
#recent-posts-2 h1 {
color: #800000;
font-family: Calluna;
font-size: 1.15em;
font-style: bold;
font-style: italic;
font-weight: bold;
text-transform: capitalize;
}The blog I need help with is: (visible only to logged in users)
-
Hi, I’m not seeing the italic declaration in your saved CSS. Did you save it before canceling out?
-
I put it in the property font-style, is that the correct way to do it?
font-style: italic; -
Sorry, I missed the bold bit. For bold, you use font-weight: bold; . I’ve also changed the selector. Replace what you have with the following.
#recent-posts-2 .widget-title { font-family: Calluna; font-size: 1.15em; font-weight: bold; font-style: italic; text-transform: capitalize; } -
-
- The topic ‘Navigation title reverts after custom edit’ is closed to new replies.