My sidebar doesn't look good with the tag cloud clutter. What a mess. The big items are messing with the other words and the other items in my sidebar. Also, it could be justified on both sides or centered to make it look balanced. I'm at http://www.annmariedavis.net/blog.
Hi
If you can, wrap your cloud display in a div like
<div id="cloud">
=== tag code here ===
</div>
and add to your CSS
#sidebar #cloud a {
line-height: 1.0;
}
Play with line-height til you find the setting you like - .9, .8, 1.1 etc.
You can also add padding and/or margin in between the CSS brackets until you get the spacing you are happy with
thefabledneedle
Member
Posted 2 years ago #
i'm using the theme 3 Column Blue and I don't seem to be able to edit my tag cloud.
http://blog.loveliette.com
am i missing something?
kapiljain.in
Member
Posted 2 years ago #
You are using widget to display tags (GLITTER) in your site.
Use the following in style.css of the theme
li#tag_cloud a {
line-height: 1.0;
}
Play with line-height til you find the setting you like - .9, .8, 1.1 etc.
By default smallest font size of a Tag is 8pt and largest is 22pt, to change it you have to add tag cloud manually in sidebar.php
For more details http://codex.wordpress.org/Template_Tags/wp_tag_cloud
Thanks