View Single Post
  #5 (permalink)  
Old Mar 6th, 2008, 22:11
dab42pat dab42pat is offline
SuperMember

SuperMember
Join Date: Jun 2007
Location: uk
Posts: 459
Thanks: 0
Thanked 0 Times in 0 Posts
Re: creating a scrolling bar

Try replacing this part of your code.

HTML: Select all
 <div id="Layer1" style="position:absolute; width:817px; height:328px; z-index:42; left: 201px; top: 176px;">
With this

HTML: Select all
<div id="Layer1" style="position:absolute; overflow: auto; width: 500px; height: 300px; z-index:42; left: 201px; top: 176px;">
Adjust the width and height to your liking

Cheers

Pat
Reply With Quote