Hello Guys,
I’m using theme Twenty Ten 1.2 and I’m having trouble removing the underlines from the links in my posts. I’m familiar with HTML but the CSS got me a little confused. Any help would be appreciated. My web-site is authentic-newyork.com. Thanks
Tom
these are the basic link styles of twenty ten (from style.css):
a:link {
color: #0066cc;
}
a:visited {
color: #743399;
}
a:active,
a:hover {
color: #ff4b33;
}
add text-decoration: none; wherever you want.
http://www.w3schools.com/css/css_link.asp
btw:
twenty ten will be overwritten with the next upgrade of your wordpress version - consider creating a child theme http://codex.wordpress.org/Child_Themes
Thanks a bunch alchymyth!