Need to set up 2 styles of links
-
I have been reading and trying to solve for several days now. I need to set up two complete styles of links. I have found a solution but I am haveing trouble making it work. Here is my url: accoladespublicrelations.com Here is the style sheet code:
a {
text-decoration : none;
color : #EABE1F;
background : inherit;
}
a:hover {
text-decoration : underline;
color : #5AB8DC;
background : inherit;
}
a img {
border : 0;
}a.brown {
text-decoration : none;
color : #9C1A22;
background : inherit;
}
a.brown:hover {
text-decoration : bold;
color : #555555;
background : inherit;
}
a.brown img {
border : 0;
}Here is the template page code:
<h6>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
</h6>
- The topic ‘Need to set up 2 styles of links’ is closed to new replies.