Archived topic
Search formatting
3 replies · Started by Scott on November 17, 2022
Hi team
Facing a formatting issue with the search in the header where the white search box looks a bit broken.
I've recently added the following code which I presume is causing the problem:
@media (min-width: 801px) {
#site-navigation .inside-navigation {
padding-top: 25px;
}
}
The purpose of this CSS is to push the navigation down so it's in line with the site logo.
Would appreciate you taking a look.
Hi there,
Try this CSS instead:
@media (min-width: 801px) {
.nav-float-right #site-navigation {
margin-top: 25px;
}
}
Thanks!
No problem :)