Hey man! This is the deal. I'm working on a website and it has a table layout, but what I want is to put a scrollbar on some of the pages so I can avoid scrolling the entire window? Any help is much appreciated. Thanks for replying.
sounds like you want to use iframes.... places the iframe code within the page, and the table contents as a page within it - not that thats well explained, but its the general gist http://www.w3schools.com/tags/tag_iframe.asp will explain it better
Hey man! Thanks for the answers. I see what you mean .bmp, using iframes sounds like a good idea but shouldn't there be an easier way to maintain this? And that's when we come to the style attribute as Gordaen was talking about. Now I'm not quite sure what you mean, should I just put the style attribut in the table code? I did that, but nothing happened, so please be a little bit more specific. Thanks for replying.
You can include it in either the table or td tag, depending on your goal. I should have mentioned you also need to set display to block and give specific dimensions. Example: .blah { width:150px; height:150px; overflow: scroll; display: block; }