Mike Copeland wrote:
Quote:
Is there a way to control the placement of something relative to to
browser's page size? Specifically, I want to display a small line
denoting the "update" date at or near the bottom of the displayed screen
page. |
<snip>
Quote:
http://midtownmuseumdistrict.org/Businesses03.html |
In your stylesheet:
#menu{position:auto; ....................
^^^^^^^^^^^^^^
No idea what you want to accomplish here. In any case it does nothing.
Remove it.
See <http://www.w3.org/TR/CSS21/visuren.html#propdef-position> for
valid values for the position property.
Also see:
<http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2 Fmidtownmuseumdistrict.org%2FBusinesses03.html>
In your markup:
<div style=""> <!-- I'd like this line near or at the bottom of the
page.-->
<br><br><br><br><br><br><br><br><br><br><br><br><b r><br><br><br><br>
<p class="small">Last site update: 3-Aug-2009</p>
</div>
Remove the complete line of <br>'s and in your quote portion of
style="" add:
position:fixed; bottom:0;
Of course it would be better to class the div and place the rules in
your stylesheet.
Most IE browsers have problems with "fixed", so I recommend the site
update information to be shown at the bottom of the document rather than
the bottom of the viewport which then requires replacing fixed with
absolute .
--
Gus