I currently have a white background for the tags but want to change it to black with white text. How do I do that please?
Many thanks
Can anyone please help me with this issue?
Try adding this to your custom styles:
.tagcloud a {
background: #444;
background: -moz-linear-gradient(#444,#333);
background: -webkit-linear-gradient(#444,#333);
background: -o-linear-gradient(#444,#333);
background: -ms-linear-gradient(#444,#333);
background: linear-gradient(#444,#333);
box-shadow: 0 1px 1px rgba(255,255,255,.2);
color: #CCC;
}
Daniel
Thank you so, so much for the code. It is perfect and I am so happy with it. I really appreciate your time sending me it. If I may ask one more question on it – I have black background with white text for the tags which is perfect but when I hover over a tag the hover colour is really dark and you can no longer see the name of the tag. I cannot find anywhere in theme options to change this – have spent literally hours trying to figure it out on my own before I asked for help.
My url is: http://www.smilesandtears.org/
Many thanks again. I think this theme is just the best π
Tracey
Add this:
.tagcloud a:hover {
color: #fff;
}
Thank you so much – that worked perfectly