text style in Links Widget
-
I am using the twenty-eleven template. I would like the text in my sidebars (links widgets) to NOT be bold text. Is there a CSS to change that?
-
Hi there, you can use this code to accomplish that:
/*Unbold Links in the Links Widget*/ .blogroll a {font-weight:normal;}Just enter it in the CSS area of the customize tool.
We have a guide to getting started with CSS here:
http://en.support.wordpress.com/custom-design/css-basics/
We also have a great forum where you can get help with further CSS related questions here:
-
Hi there,
I can see that you entered it correctly.
Screenshot http://grab.by/nyAy
Notice how the links under “Useful Links” (using the Links widget) appear without the bold formatting, while the links in the “Recent Posts” (using the Recent Posts widget) include the bold formatting:
The code was only for the links widget.
Did you want all links in all widgets to have the bold formatting removed?
-
-
so, how can I apply that same code to the recent posts widget? I tried this but it didn’t work:
/*Unbold Links in the Recent Posts Widget*/
.recent posts a {
font-weight: normal; -
Hi there,
I’m glad the first code worked for you!
Try this for the Recent Posts instead:
/*Unbold Links in the Recent Posts Widget*/ .widget_recent_entries a {font-weight: normal;}
- The topic ‘text style in Links Widget’ is closed to new replies.