Footer colour in Marvel theme

Hi everyone. I’ve finally got my new site up and running and used the Marvel theme, which looks great. Just one issue; I have my copyright line as the footer, however, the default text colour for the footer is black, and that doesn’t show up well against the image which I have on the page. Any way to change the footer text colour? Thanks

Please post a link to your site so the folks here can help you.

Sure if it helps.
http://adelanta.co.uk
Footer is obvs at the bottom of the page…

To change the footer color site-wide, paste this in Settings > Code > CSS:

footer.theme {
color: #FFFFFF;
}

That will make the Footer text white. You can replace it with any color as needed.

If you’d like to have the Footer have a Bold font weight, you can use the CSS below:

footer.theme {
color: #FFFFFF;
font-weight: bold;
}

2 Likes

Thanks, that worked, however, is there a way to do it page by page?

1 Like

For page by page, paste it in the CSS tab in each pages’ Page Inspector:

image

1 Like

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