Please HELP! Changing themes messed up all product descriptions!

Solved

Please HELP! Changing themes messed up all product descriptions!

Thehumblelone
Shopify Partner
48 0 5

First of all I would like to thank the wonderful community here for always helping out.

I just changed my theme and now all my descriptions are messed. Mostly the numbering is messed up. Is there a way to fix this? I don't want to edit all 150 product descriptions! 😞

Here's the theme preview:
https://w7bu5sqdjs9imxfl-68501045494.shopifypreview.com
screenshot-www.brandsinless.com-2024.03.11-22_15_54.png

Accepted Solution (1)

p1Commerce
Shopify Partner
129 17 67

This is an accepted solution.

It will be easier to get developer support if you don't prevent right clicking on your site.

The correct way to fix this, would be to not use <p> tags inside your <li> tags and update all of your descriptions accordingly.

The way you're going to want to fix this, is by adding the following CSS to your page:

 

 

.product__description li p {
  display: inline;
}
.product__description li {
  margin-bottom: 0.5em;
}

 

 

Appreciate the assistance? Please hit the Like and Accepted Solution buttons.
--
An Exceptionally Technical eCommerce Firm
Entirely Focused on Search Position - p1commerce.com

View solution in original post

Reply 1 (1)

p1Commerce
Shopify Partner
129 17 67

This is an accepted solution.

It will be easier to get developer support if you don't prevent right clicking on your site.

The correct way to fix this, would be to not use <p> tags inside your <li> tags and update all of your descriptions accordingly.

The way you're going to want to fix this, is by adding the following CSS to your page:

 

 

.product__description li p {
  display: inline;
}
.product__description li {
  margin-bottom: 0.5em;
}

 

 

Appreciate the assistance? Please hit the Like and Accepted Solution buttons.
--
An Exceptionally Technical eCommerce Firm
Entirely Focused on Search Position - p1commerce.com