adams92891
11-23-2004, 10:49 PM
i searched the forum but i didnt find what i need :(
my site is here:
http://cha0tic.org
i am trying to make the table end where the column ends. i used the table height tag, but it isnt working??
anyone know what i can do?
thanks!
Jared
11-24-2004, 12:04 AM
hmm, try adding this to the div code:
scrolling=auto
adams92891
11-24-2004, 12:22 AM
hmm, try adding this to the div code:
scrolling=auto
i tried adding it to the div and the table :
<div style="position:absolute; top:390; left:130; width:260; scrolling=auto"><table width="260" height="300" cellspacing="0" cellpadding="0" border="0"scrolling=auto>
but it didnt work :(
MaGiCSuN
11-24-2004, 09:13 AM
i dunno why that person gave you that answer, but it absolutely makes no sense at all for this problem.
i also really have no idea why you use a table in the first place :S. try this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>cha0tic.org</title>
<meta name="author" content="maverick">
<meta name="publisher" content="maverick">
<meta name="description" content="cha0tic.org">
<meta name="keywords" content="cha0tic.org">
<meta name="generator" content="HTML Creator 3.5.1">
<LINK href="style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://www.haloscan.com/load/adams92891"> </script>
</head>
<!-- ignore that^ -->
<body text=" xxxxxx" link="#000000" vlink="black" alink="black" bgcolor="black" topmargin="3" leftmargin="3">
<p align="left"><img src="http://cha0tic.org/lay2.jpg" alt="cha0tic.org"></p>
<div style="position:absolute; top:390; left:130; width:260; height: 100%;">
<a href="javascript:HaloScan('layout');" target="_self"><script type="text/javascript">postCount('layout');</script></a>| NOV22 <b>CHA0TIC.ORG</b>
<HR><p>
<BR>
FINALLY OPENED
</div>
</body>
</html>
i added height: 100%; to the <div> that should do it
Love,
Mirna
adams92891
11-24-2004, 03:15 PM
it still doestnt work :(
http://cha0tic.org/test.htm
kittycat
11-24-2004, 06:24 PM
<div style="position:absolute; top:390; left:130; width:260; height: 300px; overflow: auto;">
You may have to change the height a bit to get it to end right at the end of the image. The overflow: auto tells a scrollbar to show up once the text goes past that height, and not keep stretching the div.
Mars12
11-30-2004, 12:59 AM
Hello adams92891,
Could your problem have to do with this line:
cellpadding="0" border="0"scrolling=auto>
scrolling=auto> is pushed up against the border="0"
There should be a space there. Try that and report back.