Forgive my ignorance here but are we talking the following?:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<div id-wrapper>
<div id=obs>
</div>
<div id=title>
</div>
<div id=image>
</div>
</div>
</body>
</html>
And have the style sheet to place the divs?
Code:
@charset "utf-8";
/* CSS Document */
.wrapper {
height: 200px;
width: 100%;
background-image: url(images/banner_background.png);
background-repeat: repeat-x;
}
.obs {
display: inline-block;
float: left;
height: 200px;
width: 330px;
background-image: url(images/banner_background.png);
background-repeat: repeat-x;
}
.image {
display: inline-block;
float: left;
height: 200px;
width: 300px;
background-image: url(images/banner_background.png);
background-repeat: repeat;
}
.title {
text-align: center;
display: inline-block;
height: 200px;
width: 100%;
margin-right: auto;
margin-left: auto;
background-image: url(images/banner_background.png);
background-repeat: repeat-x;
}
The images are stacked on top of each other and the background image doesn't show up at all. I think I'm going crossed eyed from all my reading.
Thanks,
Steve
Bookmarks