we have Brand and model dropdown boxes looking like this link as below image
I want to make like this :
css
#brand_select
{
color: #000000;
text-transform: capitalize;
font-size:17px;
font-weight:bold;
letter-spacing: 1px;
}
#model_select
{
color: #000000;
text-transform: capitalize;
font-size:17px;
font-weight:bold;
letter-spacing: 1px;
}
html
<?php
$brandSelect = '<select id="brand_select">';
$brandSelect .= '<option value="">My Brand</option>';
<select id="model_select"><option value="">My Model</option></select>'
?>
we want to Display My model below My Brand also want to give space between My Brand text and dropdown symbol.