Hello,
I need help moving my search bar to the left of my logo. I need this for my desktop view.
My url is designsfordivine.com
I would appreciate any help,
Thanks,
Hello,
I need help moving my search bar to the left of my logo. I need this for my desktop view.
My url is designsfordivine.com
I would appreciate any help,
Thanks,
Hi @omero
This is Noah from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Noah | PageFly
Hi @omero
You can achieve the following edits by following the instructions below.
@media only screen and (min-width: 975px) {
.template-search__search {
max-width: 27rem;
top: -17rem;
position: absolute;
z-index: 10;
width: 100%;
left: 6rem;
}
.header details-modal.header__search {
display: none;
}
}
@media only screen and (min-width: 1350px) {
.template-search__search {
max-width: 30rem;
top: -13rem;
}
}
@media only screen and (max-width: 980px) {
.template-search__search {
display: none
}
}
Result here:
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks I added the code in base.css but
1- now there is green area between header and main content in mobile view.
2- the search bar disappeared on desktop view
Hi @omero ,
This is David at SalesHunterThemes.
Thank you for your question.
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code.
Go Assets folder → theme.liquid file.
Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Hopefully, this proves useful.
David | SalesHunterThemes team
Hi @omero ,
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code.
Go Assets folder → theme.liquid file.
Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Hopefully, this proves useful.
David | SalesHunterThemes team