How to place text in left side

How can I place my banner text on the left side

@smit23 Could you please share the store URL? This will allow me to inspect it and provide you with a more tailored solution.

1 Like

https://sofinia24.de/

@smit23 Add this

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (min-width:990px){ .hero__text-content.horizontal-center { text-align: left !important; } }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Hello! @smit23 Please follow these steps to add this CSS code:

  1. Go to your Online Store
  2. Click on “Themes”
  3. Select “Edit code”
  4. Open your CSS file. If you have a custom CSS file, open that instead.
  5. If you can’t find your custom CSS file, open “theme.css”
  6. Add the following code at the end of the file.
.hero__text-content.horizontal-center {
    text-align: left;
}

If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Best regards
Kaushik

1 Like

Hye @Kaushik_7 , @niraj_patel On desktop looking good but on mobile i want Centre

@smit23 please replace css with billow css

@media only screen and (min-width: 767px){
.hero__text-content.horizontal-center {
    text-align: left;
}
}

If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Best regards
Kaushik

1 Like

Thank you for your assistance @Kaushik_7

1 Like