Forum Moderators: open
Here's my code (validated):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Test XHTML Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
html {
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
}
div#main {
}
div#right {
float: right;
width: 200px;
}
div.infobox {
border: 1px solid black;
}
div.infobox .header {
background-color: #DEDFDF;
margin: 0px;
padding: 4px;
border-bottom: 1px solid black;
}
div.infobox .contents {
padding: 5px;
}
div.blurb {
background-color: #DEDFDF;
border: 1px solid black;
padding: 3px;
}
</style>
</head>
<body>
<div id="content">
<div id="right">
<div id="forumsataglance" class="infobox">
<div class="header">
<strong>Forums at a Glance</strong>
</div>
<div class="contents">
<strong>General Forums</strong><br />
The General Forums are for postings about different "Topics" in this
industry.<br />
<br />
<strong>Product Forums</strong><br />
The Product Forums are for postings about specific "Brands or
Products." This is NOT the place to buy and sell specific products,
nor is it the place to "blast" a particular company.
</div>
</div>
</div>
<div id="main">
<p>
This is where the content will go. It will be very excellent content
and will be enjoyed by all participants!
</p>
<div class="blurb">
<strong>Please note</strong>: We will continue adding new
manufacturer and product forums as time and space allow. If you have
any suggestions for a forum you would like to see added to our list,
please feel free to email us.
</div>
</div>
</div>
</body>
</html>
Looks like my intents weren't preserved. Oh well, you get the idea :) Would appreciate any suggestions on how to do this correctly. Should I resort to using a table? :( Oddly enough, NN 4.x is the only browser it looks "right" in to me :)