Hey @Anantha,
First, please note that the MEC plugin does not offer additional layout other than what you currently see. I’ll give you some custom CSS to achieve what you need but note that, we will not support issues that will arise from the use of it or provide further enhancement. Here’s the code:
.mec-search-form .mec-dropdown-wrap {
width: 33.3333%;
float: left;
}
.mec-search-form .mec-dropdown-wrap .mec-dropdown-search {
display: block;
float: none;
}
.mec-search-form .mec-date-search {
clear: none;
}
.mec-search-form .mec-date-search, .mec-search-form .mec-text-input-search {
width: 33.3333%;
display: inline-block;
}
@media (max-width: 767px) {
.mec-search-form .mec-date-search, .mec-search-form .mec-text-input-search,
.mec-search-form .mec-dropdown-wrap,
.mec-search-form .mec-dropdown-wrap .mec-dropdown-search {
width: 100% !important;
}
}
You can add it to your page’s Content CSS to apply it only to your “browse” page.
Hope that helps and thank you for your understanding.