Hello there, I am redesigning my website. This is the design:
http://imageshack.us/photo/my-images/217/nieuwdesign.png/
How far I am right now, is not far enough in my eyes. The code that I am having right now is for the HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Funny Mash, the funniest website around!</title>
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">
<div id="logo">
</div>
</div>
<div id="menu">
menu items
</div>
<div id="contentboven">
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
<div id="stoka">
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
</div>
<div id="stokb">
</div>
</div>
<div id="contentonder">
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
</div>
<div id="footer">
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
a <br />
</div>
</div>
</body>
</html>
This is what I have in the CSS.
@charset "utf-8";
/* CSS Document */
*{font-family:arial,helvetica,sans-serif,tahoma,verdana,geneva,lucida,"lucida grande";}
#container {
width:960px;
height:auto;
margin-left:auto;
margin-right:auto;
}
#header {
width:auto;
height:100px;
background:url('../images/Bheader.png') repeat-x;
}
#logo {
background:url('../images/logo.png') no-repeat;
width:auto;
height:52px;
width:334px;
margin-left:auto;
margin-right:auto;
}
#menu {
background:url('../images/Yheader.png') repeat-x;
}
#contentboven {
background:url('../images/blauwb.png') repeat-x;
margin-top:1px;
}
#stoka {
background:url('../images/stok1.png') no-repeat;
margin-left:355px;
margin-right:0;
margin-top:75px;
}
#contentonder {
background:url('../images/geel.png') repeat-x;
}
#footer {
background:url('../images/blauwc.png') repeat-x;
}
With this as a result:
http://imageshack.us/photo/my-images/31/dreamweaverfunnymash.png/
I am trying to get the black sticks in the right place, but what am I doing wrong? And how do i put this fully design to a good code? I want to code a news section that only imports news from sites with the tags 'funny'. I was almost sure there was something like that on Blogger, and make an automatic blog feed.. Can anybody give me tips? Thanks for helping me out guys!
PS: Stoka is being the black stick I am trying to get a nice position. Stokb is the other one. When I do not add all the A's, I do not see an image.