Home › Forums › Iconic One Pro Support › How to resize form search? › Reply To: How to resize form search?
October 13, 2020 at 2:44 pm #6325
Themonic-Support
Keymaster
.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;
}