Ok, I'm lost. I have this in my style sheet:
ul {
list-style-type: none;
font: 2em, Arial, sans-serif
height: 80px;
width: 300px;
margin-left: auto;
margin-right:auto;
}
Then I have this in the middle of my php script:
$ddl = array('--Select System--','Bryan, TX','Enid, OK','Tyler, TX');
echo '<ul><select name="System">';
foreach( $ddl as $k => $v ) {
echo '<option value="'. $k .'"';
if( isset($TechSystem) && $TechSystem == $k ) {
echo ' selected="selected"';
}
echo '>'. $v .'</option></ul>';
No matter what setting in the style sheet I change, it is not reflected in the menu. I will readily admit that I'm a clueless coder
"If builders built buildings like programmers write programs, the first woodpecker to come along would wreck civilization."