britt15
04-11-2005, 08:12 AM
I am have trouble with my scrollbar on my layout. I only want the scrollbar on the right side.....not at the bottom. When I resize the width of my layout image....the scrollbar is still there.
Example: http://darkangelic.net
kiwee
04-11-2005, 11:37 AM
try using width="100%" rather then a pixel width
britt15
04-12-2005, 07:23 AM
Do you mean change the width of my layout graphic? If so.....I tried that and it didn't work.
kiwee
04-12-2005, 11:22 AM
yes, but instead of using pixels use persentage, so it will change when you resize the browser.
what is your screen res.??
britt15
04-13-2005, 09:11 AM
yes, but instead of using pixels use persentage, so it will change when you resize the browser.
what is your screen res.??
1024 x 768
Monkey Bizzle
04-13-2005, 09:45 AM
Your code was a little out of sorts... You had unnecessary <center> tags, an extra </div> tag, and the way that you had your divs set up with the negative positioning was creating the scrollbar. Try this instead and you will be scrollbar free!
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>*Darkangelic.net*------For the dark @ Heart</title>
</head>
<body marginwidth="0" leftmargin="0" marginheight="0" topmargin="0">
<img border="0" src="Images/Version13/version13.gif" style="position: absolute; top: 0; left: 0;">
<div style="position: absolute; width: 100px; height: 100px; z-index: 1; left: 478px; top: 53px;" id="layer2">
<iframe name="left" width="182" height="593" frameborder="0" allowtransparency="true" src="left.php" style="border: 1px solid #FFFFFF;">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
</div>
<div style="position: absolute; width: 100px; height: 100px; z-index: 2; left: 23px; top: 680px" id="layer3">
<iframe name="middle" width="481" height="1346" frameborder="0" allowtransparency="true" src="middle.php" style="border: 1px solid #FFFFFF;">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
</div>
</body>
</html>