Change font color on Footer Credits

Hello,

I try to change the color on the footer credits. I have successfully aligned to center, with following css. But the font color wont change…

.site-info.col-sm-6 {
width: 100%;
text-align: center;
color: #ff0000 !important;
}

Thankful for the help!

Best

Philip

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the color of the font by going to Appearance > Customize > Additional CSS and pasting it there.

/*Footer font color*/
.footer .footer-credits a, .footer .footer-credits {
    color: black;
}
}


Best Regards,
Support

Hello,

Thanks. But it doesn’t help…

Best

Thanks for the clarification.

That code had a litter error,

Here’s the correct one to change color

/*Footer font color*/
.footer .footer-credits a, .footer .footer-credits, .bg-dark .social-list a  {
     color:#ff0000 !important;;
}

And you can use this one to remove the footer totally.

/*remove footer*/
footer{
    display: none;
}

Best regards,
Support.

Hello!

Hmm, the footer credits are still white… see attached screen shot. So weird…

Best!

Philip

Hi,

First, try this; He gave the CSS with two semi-colons, first try to remove one semi-colon and refresh the cache and see that fixes the issue.

If that didn’t work, remove what Support gave for changing the footer credits, and can you try this,

.footer .footer-credits, .footer .footer-credits a { color: #ff0000; }

If that sill didn’t work, pass us the website URL.

Let us know,

Thanks,
laranz.

Hello Laranz,

Thanks but still dosen’t work. Really weird. See attached print screen.

Thanks for the help!

Best

Philip

Hi,

Can you show us your website URL? So that I can navigate and see what is wrong in the CSS.

Let us know,

Thanks,
laranz.