I'm using dropkick jQuery plugin
I know, that dk_toggle has default width: 220px:
<a class="dk_toggle" style="width: 220px; ">(from Google console)
My html in my view:
<select name="country" class="default" tabindex="2">
<option value="EN">English</option>
<option value="IS">Israeli</option>
<option value="UA">Ukrainian</option>
</select>
But I want to change it in my css file:
.dk_toggle {
height: 15px;
width: 245px;
}
It isn't changing. So HOW I should change it ?