What about adding to your Additional CSS:
footer.site-footer {
background: #f00;
color: #f00;
}
==========================
Or change anything you want:
/*footer css*/
footer.site-footer {
float: left;
width: 100%;
padding: 40px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/* background: #00cccc; */
/* color: #00cccc; */
}
footer.site-footer .site-info {
text-align: center;
color: #fff;
float: left;
width: 100%;
}
footer.site-footer .footer-right {
text-align: center;
margin-bottom: 20px;
width: 100%;
float: left;
}
footer.site-footer .footer-right .social_icons li {
display: inline-block;
margin: 0 10px;
}
footer.site-footer .footer-right .social_icons li a {
width: 35px;
height: 35px;
display: block;
line-height: 35px;
background: rgba(255, 255, 255, 0);
color: #fff;
font-size: 16px;
text-align: center;
border: 1px solid #fff;
-webkit-transition: 0.3s all;
-moz-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
footer.site-footer .footer-right .social_icons li a:hover {
color: #fff;
border-color: transparent;
}
footer.site-footer .footer-right .social_icons li.facebook a:hover {
background: #3b5998;
}
footer.site-footer .footer-right .social_icons li.gplus a:hover {
background: #d34836;
}
footer.site-footer .footer-right .social_icons li.linkedin a:hover {
background: #007bb6;
}
footer.site-footer .footer-right .social_icons li.twitter a:hover {
background: #1dcaff;
}
footer.site-footer .footer-right .social_icons li.Instagram a:hover {
background: #125688;
}
footer.site-footer .footer-right .social_icons li.pinterest a:hover {
background: #e95950;
}
footer.site-footer .site-info a {
color: #fff;
}
/*footer css*/