How can I change copyright colour to black and change the font colour to white?
mojatu Hi Add this code in custom.css file
.t3-copyright { color: #000; background: #fff; } .t3-copyright .copyright { color: #9fa7ac; }
change color codes as per needs.
Ninja Thanks for the guidelines. Works to some extent but not for the entire screen. Please help on: 1. How do I get it working on the entire screen and not have orange sections on the sides? 2. How do I centralise the text instead of having it left aligned?
Thanks
mojatu Hi Copyright is part of the footer area and load under footer container the orange color you need to change from footer classes i shared in other thread. Add this code to move the text in center
.t3-copyright .copyright { width: 100%; text-align: center; }
Excellent. Works perfectly!
mojatu You are welcome!