jquery.customSelect icon indicating copy to clipboard operation
jquery.customSelect copied to clipboard

Add a container to customSelect

Open cavico opened this issue 12 years ago • 0 comments

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).

image

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

cavico avatar Sep 03 '13 12:09 cavico