I would like to style the tag cloud so that i can show visitors what tags they've toggled. i want to make all of the tag list items the same size. any ideas would be helpful.
I would like to style the tag cloud so that i can show visitors what tags they've toggled. i want to make all of the tag list items the same size. any ideas would be helpful.
the easyest way to do that with current version is resetting the font size with jquery, this works with any tag cloud as it's generated by wp function and not by the plugin
$('.widgetCSSClassName a').css('font-size', 12);
where 12 is the size you want the tags to be
This topic has been closed to new replies.