Forum Replies Created
-
AuthorPosts
-
You need to add a . infront of sidebar like I wrote it above
.sidebar .featuredpost
I don’t see that in your style.css file.
Try .sidebar .featuredpost h2 a:hover{}
Yes, just change the color for the a:hover attribute.
Also you’ll want to remove the color from:
.widget h4, .widget-area h4 {
color: #FF0000;
text-transform: uppercase;}
so the widget titles are back to normal.
On my end they are red now. Try refreshing your browser’s cache.
Sorry, I missed a zero.. it needs to be ff0000 (which is just a red test color) rather than ff000 then it will work.
I’m still seeing the other code in there. Try turning off the cache plugin
It worked, but I just realized you asked to change the article titles, not the widget titles. So lets try this instead:
Add the following to your style.css file:
.sidebar .featuredpost h2, .sidebar .featuredpost h2 a{
color:#ff000;
}
I don’t see that you placed what I provided anywhere in your style.css file. Make sure it’s saving, or that your in the proper file.
You wont find that code because I was providing a new snippet for you to copy and past in there. Let’s try this instead:
Locate the following code:
.widget h4, .widget-area h4 {
text-transform: uppercase;
}
and make it look like this:
.widget h4, .widget-area h4 {
text-transform: uppercase;
color: #ff0000;}
Lets see if that does the trick,
Sorry, that should go in your style.css file.
Without seeing your site, I’m assuming this would work:
#sidebar .widget h4, .widget-area h4 {
color: #000;
}
Change the “#000″ to whatever color you’d like. If that doesn’t work please provide a link to your site so I can see it in action.
If all you’re trying to do is make the text a different font family, find this line in the style sheet (should be line 1553):
h1, h2, h2 a, h2 a:visited, h3, h4, h5, h6{
color: #333333;
font-family: ’Verdana’,sans-serif;
font-weight: normal;
line-height: 1.25;
margin: 0 0 10px;}
Change that to what ever font you’re looking to use. It won’t change the body text.
I understand the frustration and do apologize for the inconvenience.
-
AuthorPosts