ngriffin
(Norman Griffin)
11 October 2016 14:22
1
Hello, I’m trying to change the text color in the footer to black. My background is grey and the text in the footer is getting lost.
Is there some CSS code that might do the trick? If anyone has any suggestions, I’d look forward to the feedback.
Many Thanks…
swilliam
(scott williams)
11 October 2016 14:57
2
i’m sure you can but with no url we can’t see what to target with CSS. Someone may know off the top of their head, but I don’t so I would need the URL.
ngriffin
(Norman Griffin)
11 October 2016 14:59
3
spotlightmediausa.com - This is the URL.
Many Thanks…
swilliam
(scott williams)
11 October 2016 15:25
4
Try this:
.footer_content {
background-color:#313131 ;
}
Edit Sorry misread that I thought you wanted to change background…
For text just use:
.footer_content {
color:#000000 ;
}
1 Like
ngriffin
(Norman Griffin)
11 October 2016 15:31
5
Awesome… Worked perfect. Thank you very much.
1 Like