Link with text-decoration: none;


Author Message
MArni

Posted: 12/29/2008
Quote message 

Where i can "text-decoration: none;" insert in css, that in my sidebars the links don't have a underline.
 
Tim Fahndrich

Posted: 1/1/2009
Quote message 

I think this is what you're looking for. In your CSS, look for this code:

.BlockContent a
{
color: ##bf912f;
}

and add the line "text-decoration: none;" so it now looks like this;

.BlockContent a
{
color: ##bf912f;
text-decoration: none;
}
 
Tim Fahndrich

Posted: 1/1/2009
Quote message 

I forgot to mention that the color will be set to what your theme is set to, and not the color I have above. :-)

So you probably won't find the exact code in your CSS.

Hope this helps.