Random bullets in my product description are tiny - Craft Theme

As title says, for some reason some of my bullets in the product description are tiny. I’m using the Craft theme.

It’s not even consistent either, some have the issue in the middle or top. Not sure how to fix this.

Hello @Celestial_Fluff ,

Most probably there is inline css in the html that’s why it varies.

btw to confirm please share the URL.

Regards
Guleria

Hello @Celestial_Fluff

Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?

Of course.

https://celestialfluff.com/

Yes,

https://celestialfluff.com/

Yes I was right there is inline css inside the li> span element

e.g.

- Crafted from soft minky fur

If you remove this part ( style=“font-size: 0.875rem;” ) from ech element then it will fixed automatically.

Alternatively you can use this css code.

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

.product__description li span {
    font-size: inherit !important;
}

Regards
Guleria