Hi,
im looking to underline the search bar only on the mobile menu like the photo on amiri.com
- my site is https://luxurymrkt.com
thanks in advance,
mike
Hi,
im looking to underline the search bar only on the mobile menu like the photo on amiri.com
thanks in advance,
mike
Hi @Luxurymrkt ,
You can try the code below.
@media only screen and (max-width: 750px) {
form#HeaderSearchForm {
min-height: 40px;
margin: auto;
}
input.site-header__search-input {
border-bottom: 2px solid;
}
}
Hi unfortunately this didn’t work.
also I just want to underline search on mobile menu not outside the mobile menu drawer . Snippets / drawer . Is there another code that might work?
Sure please leave your solution here so others can benefit
Oh. Sorry @Luxurymrkt . I misunderstood.
You can try the code below. Replace the code with this instead
@media only screen and (max-width: 750px) {
input.input-group-field {
border-bottom: 2px solid;
}
}
HI @Luxurymrkt ,
You can add the code below to the theme.css
div.drawer__scrollable {
padding-top: 0;
margin-top: -1rem;
}
Amazing thanks so much!!!