Hello everyone,
I would like to style the tag cloud that is on my wordpress blog.
I only want to change the standard font color / hover color and visited colour.
How can I do this?
Thanks a lot!
Hello everyone,
I would like to style the tag cloud that is on my wordpress blog.
I only want to change the standard font color / hover color and visited colour.
How can I do this?
Thanks a lot!
Surely someone must know how to customize the tag cloud with css?
Anyone???? Please????
Please someone this must be a frequently asked question.
Hi DrMatthias,
If you are using widget to display Tags, add the following classes in style.css of the theme and change values it as per your need.
#tag_cloud a:link {
font-family: georgia;
color: red;
}
#tag_cloud a:hover {
font-family: georgia;
color: green;
}
#tag_cloud a:visited {
font-family: georgia;
color: blue;
}This topic has been closed to new replies.