RexxSysProg
Programmer
I have a dropdown menu that I want to append to the end (far right) of a mouseover table. I want it to have the same colors as the table. I am able to change the background color of the dropdown to match the background color of the table. But I cannot change the background color of the dropdown “arrow” nor the color of the actual arrow to match the table text color.
I can change the text color and background color of the dropdown menu text but I cannot seem to get the dropdwon text to have the right font, nor to get it to be bold, nor to get the right color for the dropdown border.
(1) How can I get the dropdown arrow color and the arrow background color that I need?
(2) How can I position the dropdown menu to be on the same line as the table (appended to it)?
(3) How can I get the border colors around the dropdown menu to match the border size and color
border-width: 1px;
border-spacing: ;
border-style: solid;
border-color: firebrick;
that is around the table?
I can change the text color and background color of the dropdown menu text but I cannot seem to get the dropdwon text to have the right font, nor to get it to be bold, nor to get the right color for the dropdown border.
(1) How can I get the dropdown arrow color and the arrow background color that I need?
(2) How can I position the dropdown menu to be on the same line as the table (appended to it)?
(3) How can I get the border colors around the dropdown menu to match the border size and color
border-width: 1px;
border-spacing: ;
border-style: solid;
border-color: firebrick;
that is around the table?
Code:
<script language="JavaScript">
<!--
function goToURL(form)
{
var myindex=form.dropdownmenu.selectedIndex
if(!myindex=="")
{
window.location.href=form.dropdownmenu.options[myindex].value;
}
}
//-->
</script>
<style type="text/css">
.Dropmenucolor {background-color: "#d3d3d3"; color: "firebrick"; font: bold; FONT-FAMILY: "Times New Roman";}
</style>
<Body...>
.........
<form name="Links" >
<select style="width:50px" border-left: 1px solid "firebrick";
border-right: 1px solid "firebrick"; border-top: 1px solid "firebrick";
border-bottom: 1px solid "firebrick";
class="inputcolor" name="dropdownmenu" size=1 onChange="goToURL(this.form)"><option selected value="">
Links</option>
<option value="[URL unfurl="true"]http://www.somepageABC.com">[/URL]
PageABC</option>
<option value=" [URL unfurl="true"]http://www.somepageDEF.com[/URL] ">
PageDEF </option>
</select></form></FORM>