Color of sidebar nav on exhibit page

Hello,

While customizing my theme's colors I encountered an issue where the background color of an exhibit's sidebar navigation (list of titles of each child page) is the same as the site's background color in the seasons theme.

How can I fix this? The box for exhibit content is correct, it's just the navigation box that's giving me problems.

In my theme's style.css file, this changes my exhibit's background color and the sidebar navigation box:

.autumn .exhibit-section-nav .current a {
background-color: #f8f1e5;

But how can I specify that the sidebar needs to be a different color?

Thanks

This sounds like a bug that is fixed in seasons. We're planning to publish it tomorrow.

Thanks! I look forward to it.

Hello,
I upgraded to Omeka 2.1 and upgraded ExhibitBuilder to 2.1 as well, but I am still having the issue with the color of my sidebar navigation being the same as my site's background color.

Where in my theme's style.css should I be editing to have the right color?

Thanks!

Can you show a screenshot of the problem or a link to a page: which colors are the same and which are you trying to change?

Thanks for your help!

Here is a screenshot of my page:
http://img822.imageshack.us/img822/4808/jye2.jpg

This is the "summary" page for an Exhibit?

The ID for that sidebar should be #exhibit-pages, so you should be able to do something like this:

.autumn #exhibit-pages {
    background-color: white;
}

That worked! Thank you very much for your help. I really appreciate it.