New Shopify Certification now available: Liquid Storefronts for Theme Developers

How to center search bar

Fahadhassan
Shopify Partner
26 0 7

Dear Community, I hope everyone is doing well. I'm facing an issue with my Flashmart theme that's a third-party theme, the search bar is on the right side, and I want to align it in the center. If someone knows the solution then let me know, please.

Thanks in advance

Here is the store link: https://mnshop.pro/

error.PNG

Reply 1 (1)
syedsumaimaly
Explorer
147 16 17

Hi @Fahadhassan 

Follow these Steps:

Go to Online Store  Edit Code Find theme.liquid file or base.css

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

.header-top-right-group {
    width: 100%;
    display: flex;
    align-items: center;
}

 

syedsumaimaly_0-1695814839762.png