views:

31

answers:

1

Why won't this remove the underline from the facebook and assassin industries links on this page.

.module_wpproad {
text-decoration:none;
border:none;
}
+2  A: 

The default text-decoration attribute of links takes precedence over the text-decoration attribute of the container. You will need to be specific in your override:

.module_wpproad a {
    text-decoration: none;
}
Matchu
Thant makes sense. I though I did that. My syntax may have been incorrect or something. Thanks!!
Kelbizzle
In case it was too small to notice, the difference was `.module_wpproad a` instead of `.module_wpproad` :)
Matchu