Could you tell me where the code is for setting the font color of the links in the tag cloud? I'm using a black background and the link colors seem to randomly change on each page load (which I like), but I need to restrict the link color from becoming black so the link won't be invisible.
Themes
(3 posts) (2 voices)-
Posted 2 years ago #
-
Look for the following line in the function printTagCloudAgain in index.php.
$colors = array("#D65421", "#000000", "#D5B94C", "#D92178", "#20A0CF", "#7777A7");This is the list of colors. You can replace 000000 with ffffff to replace black with white or use the appropriate color code you need. You can see two commented lines above this line that has other color combinations which you can try as well.
Ideally, this has to be controlled from one of the theme files or the css. Sorry that this is present inside the index.php code.
Posted 2 years ago # -
Ah Ha. I was wondering where that was hiding. :)
Thanks for the quick response.
Posted 2 years ago #
Reply
You must log in to post.