Alright here is what to do guys for hover links
<a href="#" class="hover-link">Link1</a> <a href="#" class="hover-link">Link2</a>
a .hover-link {
color:#000;
text-decoration:none;
margin-left: 10px;
display:inline;
}
a .hover-link:hover {
color: #333;
} Alright and there is how you do it!