PDA

View Full Version : How to change font color for Categories Widget - not same as Section Widget


pityocamptes
12-20-2013, 02:36 AM
The font for Catergories Widgets not showing the same, how do you change??? The font color is appearing as a link color on the site, but due to the background of the Categories Widget box being WHITE you cannot see it very well...

tbworld
12-20-2013, 03:32 AM
The font for Catergories Widgets not showing the same, how do you change??? The font color is appearing as a link color on the site, but due to the background of the Categories Widget box being WHITE you cannot see it very well...


Changes category widget to the style of your other widgets.
Add to your 'additional.css' template. Change the colors appropriately to your style.

.main_menuitem, .active_menuitem {
background: #0F0F0F;
border-bottom: 1px solid #333333;
}

.widget_content a {
color: #999999; /* Change to your site's colors */
}

.widget_content a:hover {
color: #00FF00;
}
There may be stylevars for this, hopefully someone that is more familiar with the stylevar system can post a reference. :)

pityocamptes
12-20-2013, 03:49 AM
Thanks! I will try that out. On a side note. How do I get the Category Widget to show the Section Widgets? Do you do a sub category? I'm lost on this. Thanks!

--------------- Added 1387590666 at 1387590666 ---------------

It changed it on all the links, not just the one in Categories Widget (Show All) that is the only one I want to change, nothing else... thanks.