What's your biggest current challenge? Have your say in Community Polls along the right column.

Dawn theme search bar transperent !

Dawn theme search bar transperent !

Sohan2198
Pathfinder
124 9 18

hello how can i make my search bar like this

Sohan2198_0-1723654181980.png

 

mine looks like this right now !

Sohan2198_1-1723654284928.png

 

Shopify_
Replies 13 (13)

BSS-TekLabs
Shopify Partner
2350 688 810

Hi @Sohan2198,

Could you kindly provide us with your store URL and the protected password (if applied), so that our team can offer you the necessary support?

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Sohan2198
Pathfinder
124 9 18

Url: https://www.zisthi.com/
pass:Zisthi0206

Shopify_
BSS-TekLabs
Shopify Partner
2350 688 810

Here are the steps you can follow:

1, Navigate to Online Store > Themes > Edit Code.

2, Locate and open the base.css (or theme.css, custom.css) file.

3, Paste the code snippet provided below at the bottom of the file, then save your changes.

form.search.search-modal__form .field:after {
    box-shadow: none !important;
}

Here is the result

BSSTekLabs_0-1723655026763.png

We hope this assists in resolving the issue.

If you find our solution helpful, kindly consider Liking and Marking it as Accepted. Thank you!

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Sohan2198
Pathfinder
124 9 18

Sohan2198_1-1723655752436.png

like this
search baar in center

Shopify_
BSS-TekLabs
Shopify Partner
2350 688 810

Here is the code you can use to move the search box to the center

 

form.search.search-modal__form .field:after {
    box-shadow: none !important;
}

form.search.search-modal__form .field input:focus {
    box-shadow: none !important;
}

@media screen and (min-width: 990px) {
    form.search.search-modal__form .field .search_input.field_input {
        background: transparent;
    }
    
    form.search.search-modal__form {
        position: relative;
        right: 27vw;
    }
}

@media screen and (min-width: 1200px) {
    form.search.search-modal__form .field .search_input.field_input {
        background: transparent;
    }
    
    form.search.search-modal__form {
        position: relative;
        right: 320px;
    }
}

 

Here is the result

BSSTekLabs_0-1723657674163.png

 

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Sohan2198
Pathfinder
124 9 18

Sohan2198_0-1723658058687.png

show 2 close button

 

Shopify_
Sohan2198
Pathfinder
124 9 18

Mobile View right now

Sohan2198_0-1723660194825.png

 

make like this

Sohan2198_1-1723660292226.png

 

 

Shopify_

Aatiqa
Excursionist
24 3 5

Hello! @Sohan2198 

 

I hope you're doing well. Kindly share your website URL and Password (if enabled) and I would be more than happy to help you out!

 

Kind Regards,
Aatiqa

Sohan2198
Pathfinder
124 9 18

Url: https://www.zisthi.com/
pass:Zisthi0206

Shopify_
Aatiqa
Excursionist
24 3 5

Hello! @Sohan2198 

 

Kindly, follow the below steps to fix your problem:

 

1) From your Shopify admin dashboard, Go to Online Store
2) Choose the theme which you wanna edit and click on Edit Code
3) Add this code in the end of theme. liquid file above </body>

 

 

<style>

form.search.search-modal__form .field:after {
    box-shadow: unset !important;
}

</style>

 

Result: 

 

Aatiqa_0-1723655325475.jpeg

if I was able to help you and my solution worked well for then, please don't forget to Like it and Mark it as Solution.


Best Regards,
Aatiqa

Sohan2198
Pathfinder
124 9 18

Mobile View right now

Sohan2198_0-1723705544170.png

 

 

make like this

Sohan2198_1-1723705544592.png

 

 

Shopify_

Moeed
Shopify Partner
6367 1725 2088

Hey @Sohan2198 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
form.search.search-modal__form .field:after {
    box-shadow: unset !important;
}
</style>

RESULT:

Moeed_0-1723655288426.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


Sohan2198
Pathfinder
124 9 18

like this

Sohan2198_0-1723655699392.png

search bar center

 

Shopify_