Jump to content

Dropdown Menu In Firefox style issue


Zergman

Recommended Posts

Search didn't seem to show me an existing post so here it goes.

 

I have dropdowns on my form.  They are meant to show 3 colors.  Green, Yellow, Red as the color, not the words.

<select name="box1" id="box1" class="textboxstyle" size="1">
  <option value="-" selected="selected">Please select</option>
  <option value="#00FF00" style="background-color: #00FF00"></option>
  <option value="#FFFF00" style="background-color: #FFFF00"></option>
  <option value="#FF0000" style="background-color: #FF0000"></option>
</select>

 

This works great in IE.  In Firefox, it shows the colors when the menu is dropped down but once one is selected, the box shows white.  The value is recorded, but looking at it, they are all just white regardless of what was selected.

 

I tried to remove the general styling but it didn't help

class="textboxstyle"

.textboxstyle {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000;
border: 1px solid #49166D;
background-color: #FFFFFF;
}

 

Any ideas?

Link to comment
Share on other sites

  • 2 weeks later...

Firefox doesn't allow for the background colors of <options> to be set.

 

how about not changing the background by changing the colour of the text in the drop down?

currently i have mine setup with colors red green yellow, when you click the menu on the drop down it does show the colours correctly however once its already selected it does not show that colour

Link to comment
Share on other sites

<select name="box1" id="box1" class="textboxstyle" size="1"

    style="background-color: #FFF" onchange="this.style.backgroundColor = this.options[this.selectedIndex].value">

  <option value="-" selected="selected">Please select</option>

  <option value="#00FF00" style="background-color: #00FF00">    </option>

  <option value="#FFFF00" style="background-color: #FFFF00">    </option>

  <option value="#FF0000" style="background-color: #FF0000">    </option>

</select>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.