Header menu search results
-
Why are the search result showing in a table form? How can I change this so that it shows like a regular drop down list?
Attachments:
You must be
logged in to view attached files.
Hello,
Navigate to WoodMart > Header Builder > edit current header > Configure search settings and change the search display to “Drop Down” https://ibb.co/6033Vn8y
Best Regards,
I tried to change the search results to drop down like you said but the entire design of the search button changed it is not as wide as before with the green button to the right. I don’t want the design to change I just want to be able to show the results in a drop down format not a table format.
Attachments:
You must be
logged in to view attached files.
Hello,
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global CSS section:
.autocomplete-suggestions {
display: block !important; /* Change from grid to block */
margin-top: 0;
}
.autocomplete-suggestion .suggestion-thumb {
max-width: 45px; /* Adjust thumbnail size */
margin-right: 10px; /* Add some margin to separate the image from the text */
}
Best Regards,