Author Topic: Website Design Help  (Read 580 times)

Hello, this is just a quick question about website design. I was just wondering, you know how a website has a box that you scroll down or up inside of ONLY that box? What is the HTML coding needed to make something like that? Or if there's a generator out there that can make such a thing. Please tell me what to look up.

My html skills are a little rusty but here's what I think you do.

EDIT:
Code: [Select]
[table overflow=auto maxheight=PERCENT border=BORDERSIZENOTINPIXELS]
[tr]
[td width=TABLEWIDTHINPIXELS height=TABLEHEIGHTASAPERCENT]
Put your website text in here
[/td]
[/tr]
[/table]
« Last Edit: March 13, 2010, 10:30:05 AM by Wizard »

Wizard, I am unable to locate any HTML in that code box.

Wizard, I am unable to locate any HTML in that code box.

I told you I haven't used it in a year.

EDIT: Haha I was using the wrong brackets, replace them with < and >. It probably still won't work but meh.
« Last Edit: March 13, 2010, 10:40:40 AM by Wizard »


Use DIV tags
Quote
<div style="height:120px;width:250px;overflow:scroll;">
Text Goes here.
</div>