Results 1 to 3 of 3

Thread: Combo Box Viewer and Scroll bar?

  1. #1
    Join Date
    Apr 2008
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Combo Box Viewer and Scroll bar?

    1) Script Title: Combo Box Viewer

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...omboviewer.htm
    3) Describe problem:
    I was wondering if I can add a scroll bar or scrollable content to the combo box viewer?

    Thanks in advance!!

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Change:
    Code:
    <style type="text/css">
    .dropcontent{
    width: 300px;
    height: 140px;
    border: 1px solid black;
    background-color: #FFECC6;
    display:block;
    }
    </style>
    To this:
    Code:
    <style type="text/css">
    .dropcontent{
    width: 300px;
    height: 140px;
    border: 1px solid black;
    background-color: #FFECC6;
    display:block;
    overflow: auto;
    }
    </style>
    Jeremy | jfein.net

  3. The Following User Says Thank You to Nile For This Useful Post:

    tigress (04-13-2008)

  4. #3
    Join Date
    Apr 2008
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    You totally rock - thank you SO much!! And oh btw, it looks great!

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
  •