I had a problem with the Mission Statement box extending too far down. It actually included the title of the first content item into the Mission Statement box.

My friend Tomcat76 fixed it with this CSS:

#mission { 
background: #e7f0f8 url(mission-top-left.png) no-repeat 0% 0%;
<b>border: solid 1px #FFF </b>
}

Comments

tain’s picture

Oops. Here it is without the stray bold tag:

#mission { 
background: #e7f0f8 url(mission-top-left.png) no-repeat 0% 0%;
border: solid 1px #FFF
}
tain’s picture

Title: Mission Statement box » (fixed project entry)

(fixed project entry)

Why doesn't Opera remember the project values? Argh.

tain’s picture

(fixed project entry)

Why doesn't Opera remember the project values? Argh.

tain’s picture

Title: (fixed project entry) » Mission Statement box

sigh.

tain’s picture

Tomcat76 found a better fix that allows for changes to colors and such.

In page.tpl.php, change this section

<?php if ($mission != ""): ?>
      <div id="mission"><div class="sw1"><div class="sw2"><div class="sw3"><?php print $mission; ?></div></div></div></div>
<?php endif; ?>

to this:

<?php if ($mission != ""): ?>
      <div id="mission"><div class="sw1"><div class="sw2"><div class="sw3"><?php print $mission; ?></div></div></div></div>
      <div style="height: 0; width: 0; overflow: hidden"></div>
<?php endif; ?>
lenkkivihko’s picture

Fixed the issue for me. Thanks.