Ethos Footer menu text color change

id like to change all text (including hovering text ) to white to match the social icons please

Hi @joshuadrake,

Thanks for reaching out.

Please add this CSS to your global custom CSS.

.x-colophon.bottom .x-nav li a, .x-colophon.bottom .x-colophon-content a,
.x-colophon.bottom .x-nav li a:hover, .x-colophon.bottom .x-colophon-content a:hover {
    color: #fff;
}

Cheers!

thank you kindly, one more detail please.

id like the footer menu hover color to be: rgb(67, 143, 226)

thank you

Hi there.

Please update the code to:

.x-colophon.bottom .x-nav li a, .x-colophon.bottom .x-colophon-content a,
.x-colophon.bottom .x-colophon-content a:hover {
    color: #fff;
}

then add this:

.x-colophon.bottom .x-nav li a:hover {
    color: rgb(67, 143, 226);
}

Here are some reference links related to the suggestions above:

Hope this helps.

thank you kindly!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.