Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Control Frame Scrolling

Status
Not open for further replies.

rockyroad

Programmer
Feb 22, 2003
191
US
Hello

I am building a frameset, and I would like to have it set up such that the right frame will scroll ONLY verically and NOT horizontally. Any advice on if/how this might be accomplished?

here is my frameset thusfar (notice the empty scrolling attribute, I have tried different variations in there but to no avail):

<frameset cols=&quot;*,250&quot; frameborder=&quot;NO&quot; border=&quot;0&quot; framespacing=&quot;0&quot;>
<frame src=&quot;../menu.cfm&quot; name=&quot;main&quot; scrolling=&quot;yes&quot;>
<frame noresize src=&quot;test.cfm&quot; name=&quot;right&quot; scrolling=&quot;&quot;>
</frameset>

here is the code for test.cfm:

<body leftmargin=&quot;0&quot; topmargin=&quot;0&quot;>
<table width=&quot;225&quot; border=&quot;1&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<tr>
<td>test</td>
</tr>
</table>
</body>

Thanks! [yinyang] RR
 
<body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; style=&quot;overflow-x:hidden; overflow-y:scroll;&quot;>

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top