Tepear
08-12-2006, 04:08 AM
Ok Im making my first layout. I need to be able to move the images to different areas instead of were their at already (Besides the top logo thing) I need to scoot the bigger box to the right over and the box to the left just a little. Then I need it set up to were I can add text to both of them. The left one is the links colum and the right one is the like iframe one. Ne help? Oh forgot the HTML xD
<HTML>
<head>
<title>Tepear.com</title>
</head>
<center><img src="http://67.162.73.133:9000/tepear.com/images/header.jpg"></center>
<body bgcolor="#000000"><br>
<IMG alt="" hspace=0
src="http://67.162.73.133:9000/tepear.com/images/news%20box.jpg" align=right
border=0>
<IMG alt="" hspace=0
src="http://67.162.73.133:9000/tepear.com/images/Links.jpg" align=left
border=0>
</body>
</HTML>
bourdelson
08-12-2006, 04:35 PM
Here, I moved your header image in between your body tags, which is where it should be.
<HTML>
<head>
<title>Tepear.com</title>
</head>
<body bgcolor="#000000">
<center><img src="http://67.162.73.133:9000/tepear.com/images/header.jpg"></center>
<IMG alt="" hspace=0
src="http://67.162.73.133:9000/tepear.com/images/news%20box.jpg" align=right
border=0>
<IMG alt="" hspace=0
src="http://67.162.73.133:9000/tepear.com/images/Links.jpg" align=left
border=0>
</body>
</HTML>
For your links, you can use a div layer: http://www.lissaexplains.com/html7.shtml
And it sounds like you're set on an iframe, which can be found here: http://www.lissaexplains.com/frames.shtml#inline
As for positioning, you can absolute position everything, by placing style="position:absolute; top:#px; left:#px;" in your tags, of course changing # to the number of pixels from the top and left. It might take a little playing around, but you'll get it. :)
Tepear
08-12-2006, 07:11 PM
aha thx I knew it was something like that from looking at my neopets page thx x]
wait...... were would I put those at in the image things exactly?
nvm figured it out ^.^ Thx now I just gotta go and set up the div layer and the iframe
Ok I got the div layer done fast and easy aranged the images how I want but now Im having troubles with the Iframe. It hides under images and I don't know how to move it.
(sry for triple post wouldnt let me edit >_>)
J to the izzosh
08-12-2006, 07:45 PM
The edit function stops working five minutes after a post, just so you know. You're gonna have to be quicker on the draw than that. ;)
bourdelson
08-13-2006, 06:11 PM
Can you post either your coding or a link to your webpage, so we can see the exact problem with the iframe? Thanks. :)