My child page should have white colored links instead of inheriting the red link color from the parent theme. What changes do I need to make in the HTML/CSS to achieve this?
Parent Page CSS
a {
text-decoration: none;
color: red;
}
a:hover {
color: white;
-moz-transition: all .2s;
-webkit-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
Child Page Links
<div id="links">
<ul id="list">
<li><a href="url">bla </a></li>
</ul>
</div>