Adjust the text alignment to the right side

Topic summary

A user working with the Impulse theme needs help aligning product description text to the left side on featured product and product pages (note: the discussion title says “right” but the actual request is for left alignment).

Two solutions were provided:

Solution 1 (Moeed):

  • Navigate to Online Store → Edit Code → theme.liquid
  • Add custom code above the </body> tag
  • Specific code snippet appears corrupted/unreadable in the post

Solution 2 (Made4uo-Ribe):

  • Go to Online Store → Themes → Actions → Edit code
  • Open the Assets folder and locate base.css, style.css, or theme.css
  • Add this CSS at the bottom:
.product-single__meta .product-block p {
  text-align: left !important;
}
  • Save the changes

Both responders requested the user mark their answer as the solution if it resolves the issue. The discussion remains open pending confirmation from the original poster.

Summarized with AI on November 17. AI used: claude-sonnet-4-5-20250929.

Is there anyone who can assist me in aligning the description text on my featured product and product page to the left side? I have attached screenshots for reference.

Theme: Impulse

Store address: https://evvr-beauty.myshopify.com/
Password: pialtu

1 Like

Hey @technase

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

Hi @technase

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-single__meta .product-block .rte p {
    text-align: left !important;
}
  • And Save.

I hoe it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!