change text colour in footer
-
Hi what is the CSS to change the colour of the text in footer?
The blog I need help with is: (visible only to logged in users)
-
Hi there, the first rule will change the color on your copyright. The second, the WordPress credit line. I included the two separately in case you wan the two different colors.
.site-copyright { color: #cc0000; } #colophon a { color: #1122ff; } -
thank you so much but what about the text on my widgets? (ex: “contact” and “(email visible only to moderators and staff)”
-
We can do that too. The first rule is the widget titles. The second is for the widget link and text content.
.widget-title { color: #22ff11; } .widget, .widget a { color: #ee11ff; } -
thank you so much works great! is it possible to do the same thing with the testimonials part on my homepage?
-
Sure we can do that. I see you have went white on the widget text and titles, so I’ve include both selectors in the one rule for the testimonials.
.front-block .front-testimonial-inner, .front-testimonial-meta .front-testimonial-author { color: #fff; } -
thank you that is great. Is it possible to have the little round buttons to be white too instead of black?
-
For the buttons and circle on the testimonials, add this.
.slick-dots li.slick-active button::before { background: #fff; } .slick-dots li button::before { border-color: #fff; } -
-
- The topic ‘change text colour in footer’ is closed to new replies.