rnsaturn
08-06-2004, 04:39 AM
On my site, When I make a layout, a CSS layout to be exact, I always have a little bar thing up on the top of my page, the background to be exact. On whatever webpage I do, I get that.
http://rachel.andrewsbasement.com/test.htm
See? If you look at the very top, you see the opening exposing the background and ruins the layout. Any help on how to get rid of that? thanks a bunch.
kittycat
08-06-2004, 04:47 AM
Your page code is all over the place, two body tags and missing others, it should look like this:
<html>
<head>
<style type="text/css">
body { margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
#header {
margin: 0px;
padding: 0px;
height: 0px;
}
#left {
position: absolute;
left: 245px;
top: 959px;
width: 100px;
}
#right {
position: absolute;
right: 360px;
top: 160px;
width: 200px;
}
</style>
<script src="fade.js" language="Javascript"></script>
</head>
<body background="pics/bglind.PNG" bgcolor="#ff9966">
<div id="header">
<div align="center"><img src="pics/lindsay2.PNG"> </div>
</div>
<div id="left">
<IFRAME name="inlineframe" iframe src="news.htm" width="288" height="485" frameborder=0></iframe>
</div>
<div id="right"> </div>
</body>
</html>
rnsaturn
08-06-2004, 01:08 PM
Thanks, I know it was. I was trying to get ride of that darn space. :grouch:
thank you soooo soo much.