jquery.customSelect
jquery.customSelect copied to clipboard
Add a container to customSelect
Sometimes, the select arent positioning correctly. On the image below, i show where is the custom select, and the current select element (blue transparent element).

this can be solved by simply adding a container (with position relative) around the current elements. Eg.
<span class="custom-select-container">
<select class="custom-select">
<option>Option A</option>
<option>Option B</option>
<option>Option C</option>
</select>
<span class="custom-select-inner">
<span class="custom-select-value">Option A</span>
</span>
</span>
Thank you for the attention