Click to See Complete Forum and Search --> : A little help please...


HughInTheZoo
01-02-2004, 03:01 PM
I hope javascript is what is needed here, but i need a script (or something) to make an individual cell within a table have its own scroll bar to itself. i know i can use layers, but the table is centered on the page so on computers with different resonlutions it wont work.

someone please give me a hand if ya can. also does anyone know how to make some cells in a table have a border and others not?

thanks y'all and God bless
HughInTheZoo

Jona
01-02-2004, 04:58 PM
<td style="overflow:auto;">
[All of your data belongs here]
</td>


What's necessary here is CSS, but I'm not sure if it works in a TD cell. If the above does not work, try adding width:100%; height:100%; inside of the STYLE attribute. If it still doesn't work, put all of your data in a <DIV> tag (which must be closed with </div> at the end) and put take out the style attribute from the TD cell. Then put that style attribute (and its contents, of course) into the DIV tag. That should do the trick...

[J]ona

HughInTheZoo
01-03-2004, 01:35 AM
many thanks - gonna check if it works now