Background Color to Homepage sections

Hi: We use a background image, but it is difficult to see the email and twitter icons and the copyright/licensing text down near the footer section. Is there a way to place a background color around this area, so the text is more easily read? Thank you, Barry

site: http://afterchurchatlas.org/

Hi @Barry,

You can use custom CSS to improve the legibility of the footer text. I’ve included some example code below, which you can add by going to Appearance > Themes > Curatescape > Advanced > Custom CSS:

footer.main .default #copyright a, 
footer.main .default #powered-by  a{
    color:#fff;
}
footer.main .default #copyright, 
footer.main .default #powered-by {
    background: rgba(0,0,0,.45);
    display: inline-block;
    padding: 0 10px;
    border-radius: 3px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 1px #000;
    color: #fff;
}

Perfect, thanks Erin!