How do I get rid of underlines under links? Text-decoration: none; not working

362 Views Asked by At

I can't stop the underlines being displayed in my menu (the gigantic blue block on the left).

http://jades-world.com/schoolassign/

Can someone please point out if I am missing something? I'm not sure what I'm doing wrong.

3

There are 3 best solutions below

2
On BEST ANSWER

Use,

.topmenu a, .topmenu a:visited, .submenu a, .submenu a:visited {
 text-decoration: none;
}

You can always try firebug, which is most helpful tool for front-end web developers.

0
On

On your base.css file,

.topmenu a, .topmenu a:visited {
    color: #0A95C5;
    text-decoration: none;
    outline: 0;
}
0
On

Try this

nav a {
text-decoration: none!important;
}

In the link that you mentioned there is only

nav a:hover, nav a:visited {
color: #FFF;
text-decoration: none!important;
}