The closing </div> for the wrapper comes before the fourth content div:
Code:
<div id="stuff" class="glidecontentwrapper">
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#999999">
<tr><td cellpadding="5" valign="top">Design<br /></td></tr></table></div>
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#333333">
<tr><td cellpadding="5" valign="top">Portfolio<br /></td></tr></table></div>
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
<tr><td cellpadding="5" valign="top">Contact<br /></td></tr></table></div>
</div>
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
<tr><td cellpadding="5" valign="top">Media<br /></td></tr></table></div>
</div>
Get rid of it (red in the above).
Or Put another way (courtesy of vwphillips):
Your HTML was a bit of a mess
corrected code
Code:
<div id="stuff" class="glidecontentwrapper">
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#999999">
<tr>
<td cellpadding="5" valign="top">Design<br /></td>
</tr>
</table>
</div>
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#333333">
<tr>
<td cellpadding="5" valign="top">Portfolio<br /></td>
</tr>
</table>
</div>
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
<tr>
<td cellpadding="5" valign="top">Contact<br /></td>
</tr>
</table>
</div>
<div class="glidecontent">
<table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
<tr>
<td cellpadding="5" valign="top">Media<br /></td>
</tr>
</table>
</div>
</div>
indenting helps to see the mistakes
Bookmarks