Change website text colors to black
-
Hi,
I was able to use CSS to change the color of my page texts to black. However, the menu options, the widgets at the bottom of the page and the dates on my Recent Posts widget on the side bar are still a shade of grey. Is it possible to use CSS to target these specific areas to make the text the standard black that is on the rest of the site? My website is taapsiramchandani.com
thanks.The blog I need help with is: (visible only to logged in users)
-
Hey there,
Your menu font is already black. It only becomes grey when you move mouse pointer over it, it’s a hover-effect to indicate that menu item is highlighted. I’ll suggest you keep it that way.
For Recent Posts widget, this will make the date as well as post titles black:
.widget_recent_entries a, .widget_recent_entries ul { color: #000; }If you only want to change the color of dates, use this code:
.widget_recent_entries ul { color: #000; }Now coming to footer, again, if you make the text color black, it’ll blend in against the background and won’t really be visible. Give it a try:
.site-footer { color: #000; }
- The topic ‘Change website text colors to black’ is closed to new replies.