Ok mate.
say you have:
That makes every link Black.
However in one section I want a link to be Blue.
Code:
<div class="box"><a href="/">Blue Link</a></div>
That will still be black, however if I add this CSS to it:
Code:
a{
color: black;
}
.box a{
color: blue !important;
}
It will make the link blue in that div. It tells the browser, hey it's IMPORTANT to have that link Blue. Therefore overwrites the Black link with a Blue link.