Results 1 to 3 of 3

Thread: Combo-Box Viewer Help Please

  1. #1
    Join Date
    Mar 2009
    Posts
    5
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Combo-Box Viewer Help Please

    1) Script Title: Combo-Box Viewer

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...omboviewer.htm

    3) Describe problem: The selection box and text is to small

    Hey guys i was wondering if someone could help me out here. I have the script working fine but the selection text is to small for what i want, i tried wrapping the questions in <h3> tags, putting bold and font size in css and in the style of it but its not changing for me.

    Is it possible to make it big and bold writing and maybe centering it?

    Thanks for the help,
    Will!

  2. #2
    Join Date
    Apr 2009
    Location
    Cognac, France
    Posts
    400
    Thanks
    2
    Thanked 57 Times in 57 Posts

    Default

    I've not used this before but if you look at the "style" section you can change the height & width of the Combo Box.

    You should also be able to add lines in there to control the font name, font size, font weight, etc.

    eg
    Code:
    font-size: 13pt; 
    font-family: Rockwell; 
    font-weight: bold; 
    color: #1C1C6F;

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

    wilee (05-27-2009)

  4. #3
    Join Date
    Mar 2009
    Posts
    5
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Thanks sorted it by adding a new rule and class

    .select{
    font-size: 16px;
    font-weight: bold;
    color: black;
    }

    <form name="dropmsgform">
    <select name="dropmsgoption" size="4" style="width:314" class="select" onChange="expandone()">

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
  •