Skip to main content
Inspiring
September 16, 2008
Question

Need Help

  • September 16, 2008
  • 2 replies
  • 288 views
I want to have a vertical scroll bar in my page besides the one in the internet browser. If anyone can provide me a code it will be greatly appreciated. Thanks!!!
This topic has been closed for replies.

2 replies

Fernis
Inspiring
September 26, 2008
Yup, a <DIV style="overflow:auto"></DIV> is typically the way to go, assuming that no fancy ajax frameworks are being used.

With CF8 you could do:
<cfform name="fish">
<cfdiv name="perch" style="height:150px;overflow:auto" >
</cfdiv>
</cfform>


Inspiring
September 16, 2008
Hi,

Try placing an <iframe> inside your page (or else) try it with <div> tag...

HTH