Jump5crazy
05-01-2004, 06:12 PM
Here's my site: http://geocities.com/gamecube83/jump5.html.
First, I'm trying to position the shoutbox iframe using a div layer (I couldn't get it to work the other way), but I have position right (as far as I know) but it shows up under the iframe.(the other one)
Second, far some reason, something's stretching out the screen, but I have no idea why.
Thanks.
Rosey
05-01-2004, 09:46 PM
It's stretched out because of this:
<img src="layout.JPG" usemap="#mymap" width="1000" height="800" border="0">
That's bigger than the actual size of the image.
Jump5crazy
05-01-2004, 11:42 PM
but the size of the image is 1000 by 800.
jtchange
05-02-2004, 01:11 AM
i suggest not making an image that large, seeing as most people's resolution is either 800x600 or 1024x768 and peoples browser viewing area is smaller than that still. I suggest making the images smaller but that's just me :)
Rosey
05-02-2004, 02:32 AM
oh, sorry i thought for sure that I saw other numbers.
where exactly do you want the iframe with the shoutbox?
i think this is what is stretching it out:
<div id=layer3 style="position:absolute; top:650; left:690; width:400; height:200; padding:5px;">
YOu have left 690and width 400, that's 1090 + the padding, that's over 1024.
I think that's what you meant by stretching.
Jump5crazy
05-02-2004, 02:53 AM
Okay, thanks, I didn't notice that. Well, I want the iframe directly beneath the other iframe (which is 500 in height).
Rosey
05-02-2004, 04:28 AM
There are a few things in your code that are missing and probably messing things up:
<iframe name="inlineframe" src="mainpage.html" style="position:absolute; top:900; left:0; width:1000; height:500;" marginwidth=0 marginheight=0 frameborder=0 scrolling=auto></IFRAME>
<div id=layer2 style="position:absolute; top:1800; left:0; width:200;
height:400; padding:5px;">
<!-- BEGIN MYSHOUTBOX.COM CODE -->
<iframe src="http://120199.myshoutbox.com/" width="200" height="400" frameborder="0" allowTransparency="true"></iframe>
<!-- END MYSHOUTBOX.COM CODE-->
</div>
I think you absolutes in your last div may be a little too big, you may try a number around 1450 instead of 1800, if you want it directly under the other, you'd have to set it to left:0 instead of 200.