Hi, sorry 'bout that, meant to include the code,
this is CSS so far:
Code:
*{
padding:0;
margin:0;
}
body {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #0486ca;
background-image:url(images/images/bg_body.png);
background-repeat:repeat-x;
margin:auto;
}
#container {
background:url(images/images/bg_container.png);
width:820px;
margin:auto;
}
#block {
background:url(images/images/bg_container.png);
}
#header {
position:relative;
width: 100%;
}
#header h1 {
display:block;
float:left;
width:580px;
height:136px;
background:url(images/images/logo.png);
text-indent:-9999px;
}
and HTML:
Code:
<!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>Untitled Document</title>
<div id="container">
<div id="block">
<div id="header">
<h1><a href="#">H & L Domestic Cleaners</a></h1>
</div>
</div>
<div id="head_wrap"><!--BEGIN HEAD WRAP-->
<div id="logo"><!--BEGIN LOGO-->
</div><!--END LOGO-->
<div id="navigation"><!--BEGIN NAVIGATION-->
</div><!--END NAVIGATION-->
</div><!--END HEAD WRAP-->
<div class="content"><!--BEGIN CONTENT-->
</div><!--END CONTENT-->
</div><!--END CONTAINER-->
<div id="footer"><!--BEGIN FOOTER-->
</div><!--END FOOTER-->
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
</body>
</html>
Bookmarks