Widgets setting and color

Best WordPress theme for game news websites, game portals or whatever your preferred subject.
GK User
Wed Sep 19, 2012 7:04 pm
Hello,

I was trying to mimic the demo in the sense of having 2 news widgets in the Top II Widget area. Oddly, when using the dark color scheme, the text(links) in the news widget are not white (or whatever default color is when using dark) thereby being unable to read the posts properly. When moving this exact widget to the Mainbody area, it looks as it is suppose to look. So for some reason when using the Top Widget area it seems as if it does not display properly. img attached (on a side note, is there an explanation anywhere on how to properly assess the padding and margin options?).
Thank you in advance, V-
User avatar
Fresh Boarder

GK User
Wed Sep 19, 2012 10:03 pm
Hi,

It can be related to your CSS changes, because I've checked the links in the dark theme and it looks correctly - could you provide an URL to your website?
User avatar
Administrator

GK User
Thu Sep 20, 2012 12:47 am
Thank you, (bloodofthefirstmen.com)
User avatar
Fresh Boarder

GK User
Thu Sep 20, 2012 8:37 am
The problem is caused by this selector:
Code: Select all
.symposium-wrapper a:link, .symposium-wrapper a:visited, .symposium-wrapper a:active, .widget-area a:link, .widget-area a:visited, .widget-area a:active


you have set:
Code: Select all
color: #000;


for it.

You should add the following rule:
Code: Select all
.box.dark a {
color:#fff!important;
}
.box.dark a:active,
.box.dark a:focus,
.box.dark a:hover {
color:#ddd!important;
}
User avatar
Administrator

GK User
Thu Sep 20, 2012 9:40 am
Genius! Thank you. I love this template and the framework behind it. The way widgets are set up makes everything just so freaking easy. And thanks for the awesome support! I know that 3rd party piece contributed to this particular issue and it would have been easy for you to say "well it's not the theme" like I've seen with other so called support forums. Awesome! Thanks again.
User avatar
Fresh Boarder

GK User
Thu Sep 20, 2012 9:53 am
On a side note, after you pointed this out I looked around a bit more as to why things changed like it did. I found a setting (in case anyone uses this theme with WPS...that said Load on every page. I turned that off - whew! it changed a lot- theme back to normal.)
User avatar
Fresh Boarder

GK User
Thu Sep 20, 2012 10:26 am
So now all is OK?
User avatar
Administrator


cron