Global font color & footer font size

Hello

The global font color isn’t working.

I’m also trying to change the footer font size by using code:
.x-colophon.bottom .x-colophon-content {
font-size: 10px;
}
then simply adding a text widget but the font doesn’t change. I even added font size code to the text widget:

but that doesn’t work either.

Please help.

Hello @yanikphoto,

Thanks for writing in!

For footer font color, please add following CSS under X > Theme Options > CSS:

.x-colophon.bottom .x-colophon-content {font-size: 15px !important;}

It might not reflect visually as you are using elements like Text elements that also get’s the option to change color. However, under Theme Options I changed the color and they are getting reflected. For example, I changed he link and hover color and changes are getting reflected.

My suggestion would be to clear cache after making changes on the website so that updated resource get’s loaded.

Thanks.

Yes all other color options work. But not Body Font Color (under Typography). It stays black.

Footer font size is still not changing…

Hello @yanikphoto,

Thanks for updating the thread.

It will work only on those areas wherein you are not using elements that does not override the changes you are making in Body Font Color. In a page if you are using the text element then over there it won’t work because text element get’s the option to change the color property which overrides Body Font Color. However, you can visually see the changes in footer section because it inherits the color that’s set in Body Font color. Here’s a screencast.

Thanks.

ok. thx. But you haven’t answered my problem with footer font size.

Hello @yanikphoto,

The font size in the footer area using the text widget will follow the global font settings implemented to the body and content. If you want to reduce it and make it smaller, you will need to use this code instead:

.x-colophon.top *,
.x-colophon.bottom .x-colophon-content {
    font-size: 10px;
}

We would love to know if this has worked for you. Thank you.

yes!!! thank you!

You are most welcome!

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