Change footer background and font color

Hello. I have picked the code below from this forum (Background footer). It works perfectly with changing the colors of the font and background. However, the icons and the copyright colors aren’t changing. Or even better hide/remove the icons completely. Can you please assist?

.site-footer,
.site-footer a,
.site-footer h5 {
	    color:#fff!important;
}

.site-footer {
	background-color: #000002;
}

footer

Yes, this may require further CSS customizations, please try using web inspector tool to inspect elements and target specific CSS classes. You can target icons this way:

.site-footer li::before {color:#fff!important}

1 Like

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