tylerschuettCEO
Member
Posted 1 year ago #
Hello,
I am having trouble with a little bit of CSS styling for the life of me I can't figure out where its coming from. It's not on any of my style sheets and Firebug shows the styling coming in from 'default' of which I have no clue how to adjust.
The styles are not in my style.css sheet.
The effected page is here: http://zencreativearts.com/category/dribbble/
* The styling is in the footer. It's the links, they're blue and they should be grey.
The way it should look is here:
http://zencreativearts.com/
* Or any of the other pages really. This seems to be my only problem child.
Anyones help would be greatly appreciated, and thank you in advance.
Tyler Schuett
the blue comes from a plugin:
http://zencreativearts.com/wp-content/plugins/wp-e-commerce/themes/default/default.css?ver=3.7.59
(line 654)
.category a
{
color: #0066cc;
}
which by chance interferes with the body_class() output of your category archive page which is also .category
find this style (for the links in the footer; they should be white according to this style) in style.css of your theme:
.quick-links-li a {
font-family:Arial, Helvetica, sans-serif;
font-size: .65em;
color:#fff;
text-decoration: none;
}
and add !important before the semicolon of the color line.
color:#fff!important;
tylerschuettCEO
Member
Posted 1 year ago #
THANK YOU THANK YOU THANK YOU! You're a rock star.