I am looking at including a select list within a reveal modal window. I would like the custom forms styling to apply to the element but it appears to break when the element is within a reveal modal element. You see the original select list and underneath that the UL element it generates to replace it (without any styling applied)
<div id="divX" class="reveal-modal">
<div class="large-4 columns">
<label for="customDropdown1">Medium Example</label>
<select id="customDropdown1" class="medium">
<option DISABLED>This is a dropdown</option>
<option>This is another option</option>
<option>This is another option too</option>
<option>Look, a third option</option>
</select>
</div>
</div>
I do have the class="custom" attribute on the form tag. When the select list is placed on the page outside of the reveal modal div it appears fine.
-Just to note I am using the latest Foundation 4.3.2 revision and the issue appears on both IE and Chrome. I have turned on script debugging and there are no errors reported.