How to Remove left padding/margin from metafield bullets

How can I remove the space from the left of the bullet made from metafield in the product page? I wanted for it to be align witht he price and variants

1 Like

Hi @LouieG ,

Can I give a try? Would you mind to share your URL website? with password if its protected. Thanks!

Select the product section and on the settings scroll down to “Custom CSS”. Set it to 1rem to match all the text padding - if you set it to zero, it may go too far to the left; adjust it accordingly.

ul {
  padding-left: 1rem;
}

1 Like

Thank ypu for the information. Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. And Save.
.product__info-wrapper.grid__item ul {
    padding-left: 20px;
}

Result:

I hope it help.

1 Like

Hello, @Made4uo-Ribe , @JennerDev

I tried both, and both worked. Thank you very much, I really appreciate your help, been trying to figure this out for 2 days.

1 Like