View Full Version : helpppppp


sunkissed
02-10-2005, 08:01 PM
hey i am in the process of making a blog and i can't for the life of me figure out how to line up the background and the layout. here is my link http://www.geocities.com/tropicalbikini/testing123.html please help!! thanks oh yea and here is my html code is.....

<html>
<head>

<title>____paper heart</title>

</head>

<body>

<center><img src="layyyyy.png"></center>
<body background="bg.png">

<iframe FRAMEBORDER="0" BORDER=0 width="163"
height="5000" src="http://www.geocities.com/tropicalbikini/left.html"
name="left" style="position:absolute; left:354; top:360" scrolling=no></iframe>

<iframe FRAMEBORDER="0" BORDER=0 width="369"
height="5000" src="http://www.geocities.com/tropicalbikini/content.html"
name="left" style="position:absolute; left:538; top:267" scrolling=no></iframe>



</body>
</html>

kittycat
02-10-2005, 09:26 PM
Absolute positioning and the centre tag don't mix.
You might want to try organising your layout in a table (http://www.lissaexplains.com/tables.shtml), and then including that in a big table like this:
<table width="100%" height="100%">
<tr><td align="center" valign="middle"> the table with your layout </td></tr>
</table>
Make sure ot remove all absolute positioning the <center> tags.
Also this part here:
<body>

<center><img src="layyyyy.png"></center>
<body background="bg.png">
Should look like:
<body background="bg.png">

<center><img src="layyyyy.png"></center>
Only one body tag, and make sure you have all your page content after the tag.

sunkissed
02-11-2005, 01:49 AM
im sorry, i am sooooo html retarded and i have no idea what your talking about? how should my code look?? thanks sooooo much! i really really apreciate it!!

kittycat
02-11-2005, 02:51 AM
I can't be bothered to set it up centred, if you don't care about that see how this works:

<html>
<head>

<title>____paper heart</title>

</head>

<body background="bg.png" style="margin: 0">

<img src="layyyyy.png">

<iframe FRAMEBORDER="0" BORDER=0 width="163"
height="5000" src="http://www.geocities.com/tropicalbikini/left.html"
name="left" style="position:absolute; left:354px; top:360px" scrolling=no></iframe>

<iframe FRAMEBORDER="0" BORDER=0 width="369"
height="5000" src="http://www.geocities.com/tropicalbikini/content.html"
name="left" style="position:absolute; left:538px; top:267px" scrolling=no></iframe>


</body>
</html>