So here is what I got currently [url=\"http://www.fewyn.com/test.html\"]http://www.fewyn.com/test.html[/url] the css is located at [url=\"http://www.fewyn.com/naruto2.css\"]http://www.fewyn.com/naruto2.css[/url]
What I'm trying to do is make it look like my table version of it which is located at [url=\"http://www.fewyn.com/index_re.php\"]http://www.fewyn.com/index_re.php[/url] which works fine but that tables and tables are ugly to look at and don't work the way I want them to.
So I'll love anyone who helps as I've been working on this problem for at least 5 hours and it wants me to claw my eyeballs out.
Thanks
If you don't feel like looking at the source here is the code
test.html
[code]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/1">
<title>Fewyn</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="naruto2.css" type="text/css" />
</head>
<body>
<div id="main">
<div id="blog">
blog entry
</div>
<div id="side">
</div>
</div>
</body>
</html>[/code]
naruto2.css
[code]body {
background-color: #F5E6BB;
margin: 0;
padding: 0;
}
#main {
margin: 20px auto;
padding: 0;
width: 777px;
height: 696px;
border: 1px solid #000000;
}
#blog {
background: url("http://www.fewyn.com/images/layout_03.gif");
overflow: auto;
padding: 0;
text-align: left;
width: 333px;
height: 695px;
}
#side {
padding: 0;
background: url("http://www.fewyn.com/images/layout_06.gif");
background-position: right top;
margin-left: 333px;
width: 442px;
text-align: right;
height: 696px;
}[/code]



