You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've had to style my dropkick select boxes with absolute positioning because the dropdown options weren't displaying outside of the container div's they are in.
However, when I do this, the standard dropkick css no longer works using:
This does work but when the dropdown options close, you can still see the options list for a small delay opposed to them disappearing instantly using the standard method.
Has anyone else had these issues and does anyone have any advice please?
Thanks, GREAT SCRIPT!
The text was updated successfully, but these errors were encountered:
I've had to style my dropkick select boxes with absolute positioning because the dropdown options weren't displaying outside of the container div's they are in.
However, when I do this, the standard dropkick css no longer works using:
.dk_options {display: none;}
.dk_open .dk_options {display: block;}
I had to change these to:
.dk_options {visibility:hidden;}
.dk_open .dk_options {visibility:visible;}
This does work but when the dropdown options close, you can still see the options list for a small delay opposed to them disappearing instantly using the standard method.
Has anyone else had these issues and does anyone have any advice please?
Thanks, GREAT SCRIPT!
The text was updated successfully, but these errors were encountered: