Footer Widget Tag Cloud Greyed Out

I love the X Theme. It works great and is a fast way to make a nice looking site. I have made many sites using the X Theme.

Here is a new issue. The Tag Cloud in a footer widget seems greyed out. I might be able to make up for it by changing the color of the footer background, but do not see a control for the footer background color.

Question 1: Why is the tag cloud greyed out in the footer widget area? How do I fix this?

Question 2: Is there a control to change the background color of the footer widget area? If so, where is the control?

https://www.temporaryserver2.com/ Temporarily the website is located here. Once it is finished it will go live on a different domain. Thanks for all of your help!

Hi Ian,

There is a default CSS that is setting the color and border of the tag cloud items to a lighter color so that override that, please add this code in X > Theme Options > CSS:

.x-colophon .widget_tag_cloud .tagcloud a, 
.x-colophon .widget_product_tag_cloud .tagcloud a {
    color: #5d4a4a;
    border-color: #ccc;
}

Then to change the background color of the footer widget area, you will also have to add this CSS:

.x-colophon.top {
    background-color: #efefef;
    border-color: #efeeee;
}

Feel free to change the color values in the code given.

Hope this helps.

Thanks Jade, both css worked perfectly. Also, that was a good color choice. I did not even have to change the color!
Excellent! Thanks again!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.