Hey experts - Is it possible to change the layout of the drop down search results in Enterprise theme to be wider (in order to declutter the results) and show a larger product image? Something like the below.
TIA
Hey experts - Is it possible to change the layout of the drop down search results in Enterprise theme to be wider (in order to declutter the results) and show a larger product image? Something like the below.
TIA
Hey @Nick_S2
Follow these Steps:
<style>
@media screen and (min-width: 768px) {
.predictive-result__media.media.relative {
flex: 0 0 120px !important;
width: 120px !important;
}
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
@Nick_S2 please add this css to the very end of your main.css file and check
shopify admin->online store->themes->edit theme code->assets->main.css
@media (min-width: 769px) {
.predictive-search {width: calc(150% + 24px) !important;}
}
Thank you @suyash1 works perfect.
@Nick_S2 welcome, do let me know if you need any updates.