Reply To: How to resize form search?

Home › Forums › Iconic One Pro Support › How to resize form search? › Reply To: How to resize form search?

#6325

.socialmedia #searchform #s:focus {
    width: 70%;
}

The above will match the width with previous code and there will be no transition effect because width is now same.

To remove effect:


.socialmedia #searchform #s {
    -webkit-transition: none;
    transition: none;
}