Forum Moderators: not2easy

Message Too Old, No Replies

setting text-decoration:none; for small section

I want no underline on my links in left column

         

annej

5:13 pm on Jul 12, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I'd like to remove the underline in the link in my left column and in a small navigating section at the bottom of the page. I've tried

.sidespace {
text-decoration:none;
}

in the style sheet

and

<div class="sidespace">

in the section I want no underline

Am I trying the impossible or just doing it wrong?

DrDoc

5:17 pm on Jul 12, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Try this:

.sidespace a {
text-decoration: none;
}

annej

10:22 pm on Jul 12, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks so much! It worked great.

From this I assume I need to use the a whenever I am setting attributes for anchor text.

killroy

11:04 pm on Jul 12, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It's the specifity rules. The default for a overules the lesser specificity of .sidebar.

SN