can anyone help me custom a select dropdown like this using bootstrap 3 please!.
i am trying many time but without success. Thanks
can anyone help me custom a select dropdown like this using bootstrap 3 please!.
i am trying many time but without success. Thanks
try this from bavotasan.com
.styled-select {
width: 245px;
height: 34px;
overflow: hidden;
background:url(/*your-img-url-here*/) no-repeat right;
}
.styled-select select {
background: transparent;
width: 110%;
padding: 5px;
font-size: 16px;
line-height: 1;
border-radius: 0;
height: 34px;
-webkit-appearance: none;
-moz-appearance:none;
}
note -webkit-appearance/-moz-appearance are not supported by opera or internet explorer, so it won't have the effect you want on all browsers.