judging from your screenshot, i think you also probably wanted to change the font of the contact links too - so i added in the "font-family" property. another thing to consider is that "a" in a CSS selector targets links. if you want to change the appearance of a link on hover, use "a: hover" in your selector.
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
claude pie
here is how i would do this:
.contact a{
font-family: (YOUR FONT);
color: (YOUR COLOR);
}
judging from your screenshot, i think you also probably wanted to change the font of the contact links too - so i added in the "font-family" property.
another thing to consider is that "a" in a CSS selector targets links. if you want to change the appearance of a link on hover, use "a: hover" in your selector.
Report Comment