Seasons Winter h1 headings showing white on white

I am using the latest Seasons Winter theme on Omeka 2.0.4 and I am getting white text on white background on my Simple Pages for the h1 heading. Can anyone tell me what is causing this and where I need to make a change to fix it? The text color works fine in the other Seasons themes.
Thanks,
Chris

Looks like a mismatch in where we usually position the h1 and where it is in Simple Pages. Usually, the h1 appears first thing after the content div, but it looks like in SimplePages it is another div inside. The most direct fix would be to go to the file plugins/SimplePages/views/public/page/show.php and move the h1 so it looks like:

<h1><?php echo metadata('simple_pages_page', 'title'); ?></h1>
<div id="primary">
    <p id="simple-pages-breadcrumbs"><?php echo simple_pages_display_breadcrumbs(); ?></p>

instead of:

<div id="primary">
    <p id="simple-pages-breadcrumbs"><?php echo simple_pages_display_breadcrumbs(); ?></p>
    <h1><?php echo metadata('simple_pages_page', 'title'); ?></h1>

I think that'll make it more consistent with other Omeka pages, though I'm not sure if the breadcrumbs make sense with the new positioning. Something for us to address.

Thanks for the report!

Thank you! That worked.
-Chris