I will give $5.00 to the first person that tells me how to do this: On the default Wordpress (2.3.x) theme, the blue url links are NOT underlined. What specific code do I change so that the default links ARE underlined like everyone is used to? $5.00 up for grabs
Doesn't that just strike though? I want the url to be underlined like this. Whereas by default, the Wordpress theme's urls are NOT underlined. They're just blue. I know I need to change the .css somewhere for that, I just don't know how exactly.
change a{ text-decoration: underline; } in style.css. In kubrick(the default theme) its under : a, h2 a:hover, h3 a:hover { color: #06c; text-decoration: none; }
You would have to change values in the css file as shallowink said. Depends on the theme what part in the css.
Change text-decoration: none; to text-decoration: underline; Can you post a link to the blog? I can adjust and send you the file back.
In your style sheet just look for something like this: a {color:blue; text-decoration:none;} Now delete the "text-decration:none;" part. edited because I didn't see it got answered.