This topic has 4 replies, 2 voices, and was last updated 3 years, 9 months ago ago by Robert Hall
How do I reduce the search result icon size in the search box?
in Organic02 Demo theme
Hi,
thanks for using our theme. Please add below code to (Appearance > Customizer > Theme Custom Css > Gloabl Css)
@media (max-width: 1024px) {
.autocomplete-suggestion:not(.autocomplete-selected) .arrow {
opacity: 1;
visibility: visible;
width: 24px;
height: 24px;
}
}
problam about hover
Please add this code in (Appearance > Customizer > Theme Custom Css > Gloabl Css)
@media (max-width: 1024px) {
.autocomplete-suggestion:hover .arrow {
width: 24px;
height: 24px;
margin-left: 15px;
}
.autocomplete-suggestion:not(.autocomplete-selected) .arrow {
opacity: 1;
visibility: visible;
width: 24px;
height: 24px;
}
}
Regards,
You must be logged in to reply to this topic.Log in/Sign up