I've got a html page with styling in the <style></style>
tags in the header and a php block with some includes in the body.
At the very top i've got this:
a:link {color: inherit;} /* unvisited link */
a:visited {color: inherit;} /* visited link */
a:hover {color: inherit;} /* mouse over link */
a:active {color: inherit;} /* selected link */
In the navigation bar (one of the php includes) i've got this:
a:link {color:white; text-decoration:none;} /* unvisited link */
a:visited {} /* visited link */
a:hover {text-decoration:underline;} /* mouse over link */
a:active {} /* selected link */
And the problem is i've got some <a href>
email links on the same page under the php includes which are turning white, on a white background. How can I override the included php file so my email links can be black while keeping the white navigation bar links?
Loading Sequence:
- Inline style
- Body
- php includes
- The
<a href>
emails links which are turning white