Link Color

How do you change the color when you hover over the links on the home page?

Thank you!

With this css code:

#header .top-header .header-navigation ul li a:hover {
Color:#fff;
}

Thank you,

What about changing the color when hovering over the two buttons on the homepage jumbotron section? Also, how do you change the color of the period on the jumbotron title?

Hi @frankieg1150,

Use this css code:

#header .bottom-header .header-button-one:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

#header .bottom-header .header-button-two:hover {
    background: rgba(241, 210, 4, 0.9);
    text-decoration: none;
}

You could not change the colour of the period.

Thanks,

Cristian

I used this to change the period color

#header .bottom-header span.span-dot {
color:#fff;
}

I also added a period after the last word and it worked perfectly.