Why won't this remove the underline from the facebook and assassin industries links on this page.
.module_wpproad {
text-decoration:none;
border:none;
}
Why won't this remove the underline from the facebook and assassin industries links on this page.
.module_wpproad {
text-decoration:none;
border:none;
}
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;
}