Results 1 to 2 of 2

Thread: Text box scroll down bar.

  1. #1
    Join Date
    Nov 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Text box scroll down bar.

    Hello. Im looking for a text box scroll down side bar. I have a limited space on my website and would like to put a simple text box so that I can add content and have people scroll down within that text box. Anyone know of such a script.

    Thanks,

    Craig.

  2. #2
    Join Date
    Jul 2008
    Location
    Derbyshire, UK
    Posts
    3,033
    Thanks
    25
    Thanked 599 Times in 575 Posts
    Blog Entries
    40

    Default

    If you just use a div with fixed dimensions but set the overflow to auto, that should do the job;

    Code:
    <div style="width:250px; height:400px; overflow:auto;">
    <p>content</p>
    <p>content</p>
    <p>content</p>
    </div>
    Once the content becomes greater than what the div can comfortably contain, a scrollbar will appear to allow manual scrolling.
    Focus on Function Web Design
    Fast Edit (A flat file, PHP web page editor & CMS. Small, FREE, no database!) | Fast Edit BE (Snippet Manager) (Web content editor for multiple editable regions!) | Fast Apps

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •