Topic: superfluous <div> ??
I hate to post this much code at once....
I have been, amongst other things, trying to get rid of all the errors on my pages according to W3 Validator
It gives me the "0 errors! You rock. Have a logo saying so." page. Thing is, it requires me to place a </div> that messes up my styling. The brighter red should contain the entire page's contents, which it will do if i remove any of the </div>s near the bottom (remove from anywhere else and it fixes the red container but moves something where it doesn't belong).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"[url]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang=
"en">
<head>
<meta http-equiv="content-type" content=
"text/html; charset=us-ascii" />
<link type="text/css" rel="stylesheet" href="/floatbox/floatbox.css" />
<script type="text/javascript" src="/floatbox/floatbox.js"></script>
<title>
Dawn Somers - Photographer - Photos
</title>
<link rel="stylesheet" href="photo_page_files/nu_002.css"
type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="photo_page_files/nu.css" type=
"text/css" media="screen" charset="utf-8" />
</head>
<body id="nu-red">
<div id="container">
<div id="title">
<h1>
Dawn Somers - Photographer
</h1>
<h2>
Wedding, Family & Senior Portraits
</h2>
</div>
<div id="rightCol"></div>
<div id="navigation">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="Photos_people.htm">People</a>
</li>
<li class="active">
<b><a href="Photos_weddings.htm">Weddings</a></b>
</li>
<li>
<a href="Photos_places.htm">Scenery</a>
</li>
<li>
<a href="Contact.htm">Contact</a>
</li>
</ul>
</div>
<div id="content_wrapper">
<div id="content">
<h2>
Wedding Photos <font size="1">Click to Zoom</font>
</h2>
<div>
<div style="margin: 2px; display: inline;">
<a href="Photos/wed/pavilion.jpg" class=
"lightwindow" rel="floatboxgroup">
<img src="Photos/wed/pavilion.jpg" alt="pavilion.jpg"
width="75" height="100" />
</a>
* </div>
* </div>
* </div>
* </div>
* </div>
<div class="clearer"></div>
<div id="footercontain" align="justify">
<div id="footleft">Site Designed and Authored by Tim Radford</div>
<div id="footmid">All photos © Dawn Somers</div>
<div id="footright">Best viewed with<a href="http://www.firefox.com/"><img align="top" border="0" alt="Spreadfirefox Affiliate Button" src=
"[url]http://sfx-images.mozilla.org/affiliates/Buttons/firefox3/FF3b80x15_square.gif[/url]" /></a></div>
</div>
</body>
</html>
