Question

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

.module_wpproad {
text-decoration:none;
border:none;
}
Was it helpful?

Solution

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;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top