Havein some probs with egtting an image in the header at the top of a webpage, as well as the menu bar and the footer. im very lost right now and any thing i do does not work. so i am puttin what the last good config of what i had. im very new to all of this and have done some looking around. thank you ahead of time for any help.
Here is the url for the pic for the header
http://lurkinwilli.angelfire. /b2.jpg
and then the pic for the content.
http://lurkinwilli.angelfire. /b1.jpg
http://lurkinwilli.angelfire. com/b22.JPG
You said that is the image you want to use in the header, but looking at your site, it is actually the bg image, and the b1.jpg is a gold bg image, are you trying to make that the background for the body (iframe?). If so, you need to make an .html page as your iframe source, use that image as the bg on the .html page, then link the html by using an <iframe >. The menu on the left is there, but the page source is now missing the <div id="footer"> so your copyright text is going to be sitting where ever it lands as you add content.
Here is the code for your page as it looks now:
<html>
<head>
<title>Shatterd</title>
</head>
<body>
<style type="text/css">
body
{
background-image:url(http://lurkinwilli.angelfire. com/b22.JPG);
}
</style>
<div style="width:1000px">
<div style="background-color:;height:125px;">
</div>
<div style="background-color:;height:400px;width:100px;float:left;">
Menu<br />
<p><a href="http://www.google. com" target="iframe3">GoOgLe</a></p>
<p><a href="http://www.yahoo. com" target="iframe3">YaHoO!</a></p>
</div>
<div style=height:400px;width:900px;float:right;">
<iframe src="iframe1" name="iframe3" width="826" height="400"></iframe>
</div>
<div style=clear:both">
<div style="width:1000px">
<p style="color:lightblue;font-size:27px;">Copyright © </p>
</div>
</body>
</html>
- <html>
- <head>
- <title>Shatterd</title>
- </head>
- <body>
- <style type="text/css">
- body
- {
- background-image:url(http://lurkinwilli.angelfire. com/b22.JPG);
- }
- </style>
- <div style="width:1000px">
- <div style="background-color:;height:125px;">
- </div>
- <div style="background-color:;height:400px;width:100px;float:left;">
- Menu<br />
- <p><a href="http://www.google. com" target="iframe3">GoOgLe</a></p>
- <p><a href="http://www.yahoo. com" target="iframe3">YaHoO!</a></p>
- </div>
- <div style=height:400px;width:900px;float:right;">
- <iframe src="iframe1" name="iframe3" width="826" height="400"></iframe>
- </div>
- <div style=clear:both">
- <div style="width:1000px">
- <p style="color:lightblue;font-size:27px;">Copyright © </p>
- </div>
- </body>
- </html>
If you really want to use an iframe, make the relevant page, and link it in the content section with something like this:
<iframe src="lurkinwilli.angelfire. com/frame_source.html" name="frame-source.html" frameborder="0" height="400" width="826">If you can read this your browser does not support I-Frames. </iframe>
Something else, you have your iframe dimensions set to 400 x 826, and the image b1.jpg is 600x600, so it's going to look distorted since it's not a seamless tile image.
good luck