how do i change the colour of the blue text

how do i change the colour of the highlighted text:3 ( this screenshot was taken 9hrs ago but i’m too lazy to take a new one )

Untitled224-20240331235846


0 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

claude pie

claude pie's profile picture

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