Footer font color change

You used to be able to change footer and header font and bg colors in the customizer. Now it looks like you have to add CSS to make any change. Why is this?

Here’s my issue-
https://therisecollective.org/ I want to change the text color in the footer- I managed to change the nav there but the text where it says site design by…is still white. Also want to change the social icons to be more visible.
Please advise.

Hi There @carriejordan

Thanks for writing in! Upon checking, I see that your referenced area “designed by” is not white.

You can use the following CSS to target that element.

.x-colophon-content p {
    color: red;
}

To increase social icon sizes, try adding the following CSS rule into your X -> Theme Options -> CSS area.

.x-social-global a {
    font-size: 32px !important;
}

Thanks!

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