How I can get from this:
![]()
To this:
So the pages need to be under the search bar.
url: pcmaster.fi
Issue: User wants to reposition navigation menu pages to appear below the search bar instead of alongside it.
Visual Context: Two screenshots demonstrate the desired layout change - moving the horizontal navigation menu from the same row as the search bar to a row beneath it.
Solution Provided:
Status: A complete CSS-based solution has been provided. Implementation pending.
Hi @Nicolas11
To do this go to Online Store > Themes > Customise
Click on the header section
Add to Custom CSS
@media screen and (min-width: 990px) {
.header__inline-menu {
grid-row: 2;
grid-column: 1 / -1;
}
}