How Do I change the font style of ONLY my 'pages' links?
-
I want to change the font and color of the text of my ‘pages’ links. These appear in the righthand sidebar. I cannot figure out what to type into the CSS stylesheet editor to do this. I ONLY want to change the link color of my page links. Not the other links that exist on my blog.
Blog url: http://thewhippedbakery.wordpress.com/ -
You can try something like this:
.widget_pages a:link { font-family:Georgia,Serif; color: #000; }This guide might come in handy if you’d like to learn more about styling links with CSS:
http://www.w3schools.com/css/css_link.asp -
Thanks, I just tried to paste it into my CSS and nothing happened? Is there something else I should put before it before I paste?
-
That doesn’t appear to have been added to the CSS tab at Appearance -> Custom Design.
Make sure that you save after adding it, and clear your browser’s cache to make sure that you aren’t looking at an old version.
-
That’s because I was just clicking ‘preview’ after I pasted it in and since it wasn’t showing up I didn’t save it. I just saved it though to double check and it still doesn’t work. Sorry to keep bugging you guys!
-
You had some excess characters in your CSS file.
Those are gone now, and it seems to be working properly.
- The topic ‘How Do I change the font style of ONLY my 'pages' links?’ is closed to new replies.