Hey @dms666,
This is a customization request, so you’ll unfortunately have to take the reins on implementing this custom code on your site. To make that process easier, I’d recommend getting a free tool like Firebug if you use FireFox, or the Developer Tools for either Safari or Chrome –?these can help make the customization process much easier, especially if you use their “Inspector” tools to find the elements on your page that you need to customize.
—
Now, with all that being said, I checked out your site to offer an example of custom CSS, and noticed that there is no text-shadow on the widget links or in the events category word cloud. Check out this screenshot of the latter, for example → https://cloudup.com/cdzWWk54W7G
Did you figure out how to solve this problem on your site? Even if not, let’s say you wanted to make further customizations and change the color of the links in the tag cloud –?you could do so with custom CSS like this:
.widget_tag_cloud .tagcloud > a {
color: #cc9900 !important;
}
That #cc9900 color is an orange that may not look nice on your site, but should get the point across –?play around with this and use any colors you’d like, and check out those tools I recommended above too.
I hope this helps!
Cheers,
George