This question is locked. New answers and comments are not allowed.
Hello,
there is a problem with rendering this control to the given width. We tested it in FF, IE, !!Chrome!!, Opera. But only Safari - also on Mac OS had this problem. Sample pictures are attached. Thank you.
Jozef
CSS:
form > div, form fieldset > div, .form > div { margin-bottom: 10px; } form div, .form div { vertical-align: middle; } .whiteStyle label, .whiteStyle p { color: White; } form div label { display: block; float: left; margin-right: 10px; padding-top: 5px; text-align: right; vertical-align: bottom; width: 35%; } #signUpContactTypeDiv { border: 1px solid #AACFE4; border-radius: 3px 3px 3px 3px; width: 170px; }Code:
<form>
<fieldset>
<div id="signUpContactTypeContainer"> <label for="SignUpContactType">Contact Type</label> <div id="signUpContactTypeDiv" class="t-widget t-dropdown t-header" tabindex="0"> <div class="t-dropdown-wrap t-state-default"> <span class="t-input">Resident</span> <span class="t-select"> <span class="t-icon t-arrow-down">select</span> </span> </div> <input type="text" value="Resident" style="display:none" name="signUpContactType" id="signUpContactTypeDiv"> </div> </div></fieldset>
</form> 