Archived topic
Search Bar Visual
3 replies · Started by William on February 28, 2020
Hi -
I imported the SPLIT site and customized a bit.
When clicking on the search bar, it overlays on top of the site logo and the navigation buttons. (image below)
Is there a way to make this look better?
Thank you,
William
Hi there,
we could limit its width to match the left hand navigation with this CSS:
@media (min-width: 768px) {
.inside-navigation .navigation-search.nav-search-active {
left: calc(100% - 285px);
max-width: 285px;
}
}
Thanks David. Would that fix the issue on mobile as well?
I'm a newbie, where would I put this CSS inside wordpress to get this going?
Thank you!