Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#select_box {
width: 142px;
height: 33px;
float: left;
margin-top: 7px; /* still has issues*/
margin-left: 33px; /* now works fine*/
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #000000;
font-size: x-small;
display:inline;/* ie double margin bug*/
}
#select_box {
width: 142px;
height: 33px;
float: left;
margin: 7px 0px 0px 33px;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #000000;
font-size: x-small;
}