How to center the product title both desktop and mobile view

Please help me center the title guys
Here’s the link: https://72d12c-be.myshopify.com/

1 Like

Hey @josoneryx1890

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 tag


RESULT:

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

Best Regards,
Moeed

1 Like

Hello @josoneryx1890

Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the bottom of the file.

.full-unstyled-link {
text-align: center;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

1 Like

Hi @josoneryx1890

Check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
.card__heading {
    text-align: center !important;
}
1 Like