OK, first of all, it is the <p></p> right before:
<!-- Edit the dimensions of the below, plus background color-->
That is pushing it too far down to begin with in IE and not enough in Mozilla (<p></p> is seen differently by the two browsers), just get rid of it. Then add a style section for fine tuning:
Code:
<style type="text/css">
#describe {
text-align:center;
margin:2.5ex 50px 0 0;
}
</style>
You can add it right above the </head> tag or remove the style tags (blue) and put the selector, properties and values in your stylesheet. I set the margins to bring it to left of center (50px which is really a 25px move) because it looked better (especially for 'Student Resources') to me that way. The 2.5ex moves it, now, down to a vertical center.
Bookmarks