It’s in your default.css
#archivebox {
background-color:#F5CCCC;
border:1px solid #E06666;
}
Thank you. I never would have found that!
Try Firefox with the Firebug plugin. It’s a great tool for web development.
Peter
I will try that plugin, thanks!
I am still having problems, though:
I don’t have a file called default.css in my theme editor, so I can’t make any changes to that. The default.css is my theme’s color scheme.
However, in style.css, which is what I have been making significant changes to, I have this:
#archivebox {
margin-bottom:15px;
padding:10px;
color:#000 !important;
I’m confused about why all of the changes I have been making to style.css have been overriding the default.css file (at least I assume they have, because my changes are taking effect), except for this?
Sorry, that should be
#archivebox {
margin-bottom:15px;
padding:10px;
color:#000 !important;
}
The close bracket is there, I missed it in my C&P.
I’m confused about why all of the changes I have been making to style.css have been overriding the default.css file (at least I assume they have, because my changes are taking effect), except for this?
How/if a change is implemented depends upon 2 factors:
1. The cascade order
2. The specificity
In your theme, style.css is called first followed by default.css. So, generally speaking, the declarations in default.css will override those in style.css (the cascade order).
However, if a given declaration in style.css is more specific – eg:
.sidebar ul li ul li {list-style-image:url(images/bullet2.jpg);}
it will override the more general one in the later stylesheet, default.css – eg:
.sidebar ul li {list-style-image:url(images/bullet1.jpg);}
In the second level of a nested unordered list, you’ll always see bullet2.jpg – no matter that you image you try to add in default.css
In this case, however, the background color is in default.css as pboosten pointed out. Line 67 according to Firebug. So you have to make the change to this file. Changes to style.css simply won’t work here.
Interesting. Well, I don’t have FTP access to the files on the server for this website yet, so I really can’t touch default.css yet. I should have that capability by the end of this week, so I will play with this more later.
Thanks to both of you.