1- I have numerous texts to be inserted into a Select drop down option menu for links. However it is extremely long and will not wrap. I have tried everything i know to wrap it but it is cut off. I dont want the page scrolling to the right.
Then use shorter text. <option> elements will not wrap.
2- Changing the color of the menu , ie not just the background color. I want the arrow and all of it a different style.
You can try using the CSS:
Code:
select {
color: red;
background-color: black;
}
However, that's far from reliable, since form elements tend to be handled by the underlying toolkit, and so cannot be affected by your code. It may work in a few browsers.
Bookmarks