How can I improve the alignment of my product description text?

Hi, I want to align this text better. When I click on the product in the backend of Shopify, it is all aligned and set up. Only once it’s on the front end is where it looks messy. This is the site link https://virtual-skin-care.myshopify.com/ and here is an image to know what I’m referring to.

1 Like

@blakelower

sorry for this issue please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
    this code apply for after 5 - 6 second
.rte ul li {
    display: block;
}

Please follow the steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code.
  • Step 2: Go to Assets > theme.css and paste this at the bottom of the file:
    .rte ul {
    list-style: disc outside;
    }

hello @blakelower

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.rte ul {
list-style: disc outside;
}

Thank you, that helped but now this is cut off.

1 Like

@blakelower

yes please add this code

.rte ul li p {
    margin: 0;
}
1 Like