How can I change the font color on the header of the Facebook Widget?
-
I want to make it #a40c34 like the rest of the headers in the side bar.
Thank you.
Blog url: http://7thandj.wordpress.com/ -
Can you try adding the following to your Custom CSS page?
h3 a:link, h3 a:visited {
color: #a40c34;
} -
-
The below worked for a while but the Twitter subheads changed back to black by themselves. Also some of the copy below the subheads got smaller. All this happened without me touching the code.
h3 a:link, h3 a:visited {
color: #a40c34;
}How do you control the distance between the subheads and the white lines underneath them in the Twitter widgets.
On my blog the distance between the two Twitter widget subheads and the white line below them is much less that the distance between the other three widget subheads and their white lines. I want them all to be the same distance.
Also is it possible to get rid of the underline under the “ABOUT” button?
Thank you.
-
Try these:
Twitter subheads:
.widget_twitter h3 { color: #a40c34; padding-bottom: 10px; }(adjust the padding amount as necessary)
About underline:
#page_item { text-decoration:none; } -
The CSS in this case is a little tricky. Your custom CSS is updated to remove the About underlining right now, so that looks good. I couldn’t get the color to update with the CSS above, but I tested the following and this worked for me:
.widget_twitter h3 a { color: #A40C34 !important; } .widget_twitter h3 { padding: 25px 0px !important; }Could you try it out and let us know if this gets you the result you wanted?
-
- The topic ‘How can I change the font color on the header of the Facebook Widget?’ is closed to new replies.