srollbar within a table

This is a discussion on "srollbar within a table" within the Web Page Design section. This forum, and the thread "srollbar within a table are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 29th, 2005, 18:50
Junior Member
Join Date: Jul 2005
Location: Hertford UK
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
srollbar within a table

Hi
Could someone please tell me how to insert a scrollbar within a table in Dreamweaver.
I want a FAQ page with questions link on one side of a split table and then it to navigate the answer on the other within a scrollbar

Many thanks.
Alan
Reply With Quote

  #2 (permalink)  
Old Sep 29th, 2005, 21:46
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
You want to put a DIV in the table cell and set overflow:auto; and a width and height using CSS.
Reply With Quote
  #3 (permalink)  
Old Sep 30th, 2005, 09:51
Junior Member
Join Date: Jul 2005
Location: Hertford UK
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks
Jeff but could you be a bit more specific as I'm only begining to get my head around css.
Regards
Reply With Quote
  #4 (permalink)  
Old Sep 30th, 2005, 18:33
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Try this example

Code: Select all
<table cellspacing="0">
	<tr>
		<td valign="top">
			One

			Two

			Three

		</td>
		<td>
			<div style="overflow:auto;height:100px;width:300px;">
				<a name="1"></a>One

				







				<a name="2"></a>Two

				







				<a name="3"></a>Three

			</div>
		</td>
	</tr>
</table>
Reply With Quote
  #5 (permalink)  
Old Oct 1st, 2005, 19:32
Junior Member
Join Date: Jul 2005
Location: Hertford UK
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks Jef :wink:
Reply With Quote
Reply

Tags
srollbar, within, table

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Am I using table-cell and table-row too much? idl Web Page Design 15 Sep 7th, 2006 12:55
srollbar in a table bruno89 Web Page Design 21 Apr 29th, 2006 19:04
Can You Help With This Table virtualwhispers Web Page Design 2 Mar 31st, 2006 18:49
Need to align width of Float table with the table below Vertabase Web Page Design 4 Mar 8th, 2006 21:21
..copy data from column A in Table A to column B in Table B? gecastill Databases 10 Jun 23rd, 2005 18:27


All times are GMT. The time now is 03:29.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43