Drew
Banned
Registered: 24th Nov 01
Location: County Durham
User status: Offline
|
got a page which is 2 frames - menu on left and main page
how do i get a scroll bar on the menu frame???
|
ed
Member
Registered: 10th Sep 03
User status: Offline
|
Its will come up automatically when the page gets long enough to require a scrollbar, just like in any other HTML page
|
Joff
Member
Registered: 17th Oct 00
Location: Cambridgeshire
User status: Offline
|
In the <frame> opening tag, add the attribute scrolling="yes". It should be set to auto by default.
|
Nismo
Member
Registered: 12th Sep 02
User status: Offline
|
code: <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Drews Page</title>
</head>
<frameset cols="150,*">
<frame name="contents" target="main" src="new_page_2.htm">
<frame name="main" src="new_page_3.htm">
<noframes>
<body>
<p>get IE6 to see the damm frames.</p>
</body>
</noframes>
</frameset>
</html>
|
Drew
Banned
Registered: 24th Nov 01
Location: County Durham
User status: Offline
|
it dont :S
shows ok on my re - just shown someone else and didnt have scrool bar
so i changed rez - and it dont show
|
Nismo
Member
Registered: 12th Sep 02
User status: Offline
|
screen size is probally different
|
Drew
Banned
Registered: 24th Nov 01
Location: County Durham
User status: Offline
|
cheers done
|