Hi,

I followed your advice. But I don't see how this is gonna work like a drop
down menu? 

I would like to get rid of the boxes and also like to see all choices at
once. I attached the code below. 

Cheers,
Pete

<style type="text/css">
div#CustomPicker1{
height:40px;
width:250px;
overflow:auto;
border-color:red;
border-style:dotted;
}
div#CustomPicker1 li{
list-style:none;}
</style>

<body>
<div class='picker' id='CustomPicker1'>
  <ul>
   <li>
     <input type='checkbox' name='picker1' id='item1' value='1' />
     <label for='item1'>PICKER ITEM1</label>
   </li>
   <li>
     <input type='checkbox' name='picker1' id='item2' value='2'/>
     <label for='item2'>PICKER ITEM2</label>
   </li>
   <li>
     <input type='checkbox' name='picker1' id='item2' value='2'/>
     <label for='item2'>PICKER ITEM3</label>
   </li>
  </ul>
</div>
 <br>
<div class='picker' id='CustomPicker1'>
     <select name="tierId" onchange="submit() " >
           <option value="1"> PICKER ITEM1</option>
            <option value="2"> PICKER ITEM2</option>
            <option value="3"> PICKER ITEM3</option>
       </select>
</div>


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to