The only class that is specific to the field type is on the input element itself, but I want to style the LABELS of the inputs differently depending on the type. I could probably even manage if I could switch the label in the DOM to come AFTER the input using input[type=...] ~ label... but you know what would be easier??... including a class on the wrapper... PLEASE!!
e.g.
<div class="mktoFieldWrap MKTO-FIELD-SELECT"> ← ADD A NEW CLASS HERE!!!
<label for="foo" id="Lblfoo" class="mktoLabel mktoHasWidth" style="width: 100px;">
Select one:</label>
<div class="mktoGutter mktoHasWidth" style="width: 10px;"></div>
<select id="foo" name="bar" aria-labelledby="Lblfoo" class="mktoField mktoHasWidth mktoValid" style="width: 150px;" aria-invalid="false">
<option value="">Select...</option>
<option value="foo">Foo</option>
<option value="bar">Bar</option>
</select>
<span id="foo" tabindex="-1" class="mktoInstruction"></span>
<div class="mktoClear"></div>
</div>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.