Footer Menu Color faded out

I have a problem finding where to change my footer menu color which is faded out. See screen shot.

I used this code in Theme Options and did not work:

.current-menu-item a, .current_page_item a {
color: white !important;
}


Hello @windhover4,

Thanks for writing in!

Please replace following code:

.x-colophon.bottom .x-nav li a {
    display: inline-block;
    color: rgba(255,255,255,0.25);
    text-decoration: underline;
}

with

.x-colophon.bottom .x-nav li a {
    display: inline-block;
    color: #fff !important;
    text-decoration: underline;
}

Thanks.

Great! Can you give me a hint where I find it?

I looked for it here and found this ominous warning:

https://rayscountryham.com/x/#/options
Customizing
Additional CSS
Help
CSS code
There are 2 errors which must be fixed before you can save.
Update anyway, even though it might break your site?

Can you please take a look?

Hello @windhover4,

Thanks for updating the thread.

Can you please confirm the login details again as I am getting ERROR: The username or password you entered is incorrect. Lost your password? message.

Thanks.

Please try again–I updated and it worked for me.

Hello @windhover4,

Thanks for updating the thread.

Please never shar login details in public. Always use secure note so that the information is in between you and Themeco staff. I have moved the details to secure note.

I am really sorry for the confusion. Actually that code is coming from Theme CSS file and is hard coded in ethos.css under https://rayscountryham.com/wp-content/themes/x/framework/legacy/cranium/dist/css/site/.

Please add following CSS under X > Theme Options > CSS:

.x-colophon.bottom .x-nav li a {
    display: inline-block;
    color: #fff !important;
    text-decoration: underline;
}

Thanks.

Thanks, Prasant. Always use secure note and don’t know how I slipped up but appreciate the heads up.

Have place in Theme Options> CSS, but take a look and confirm not working:
.x-colophon.bottom .x-nav li a {
display: inline-block;
color: #fff !important;
text-decoration: underline;
}

Thanks! Working now.

You’re welcome!

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