> Z-INDEX OF POSITIONED HR

You could fix this by putting the gecko image after the <hr> and positioning
the gecko absolutely:

HTML:

<!-- CONTENT: MAIN -->
<div id="content_main">
<hr>
<img id="wildlife" class="gekoLower" src="./Sangat_files/geko.png"
width="278" height="173" alt="Sangat Wildlife: Tropical Geko">
<h1>Welcome to Our World</h1>

CSS:

#wildlife.gekoLower {
        position: absolute;
        top: -30px;
        left: -250px;
}

> POSITIONED WRAPPER EFFECT, COPYRIGHT LINE AND FOOTER NAV

To fix this, you could clear the main content before bottomEffect and have
bottomEffect be position relative:

HTML:

</div>
<div class="clear">&nbsp;</div>
<div id="bottomEffect">&nbsp;</div>
<!-- NAVIGATION/FOOTER: -->

CSS:

#bottomEffect {
        width: 780px;
        position: relative;
        left:   0;
        bottom: -10px;
        height: 10px;
        background: #2A2B2D url(../image/public/.global/body_bottom.jpg)
no-repeat 0 0;
        padding-bottom: 10px;
}


I'm not sure what is causing the two buttons not to line up. Could you
switch them to both be either links or submit buttons?

Hope that helps.

Best regards,

Kepler Gelotte
Neighbor Webmaster, Inc.
156 Normandy Dr., Piscataway, NJ 08854
www.neighborwebmaster.com
phone/fax: (732) 302-0904





*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*******************************************************************

Reply via email to