Bullet point theme dawn

Hello Comunity,

I would need your help. My store www.fenixlight.at is build with Dawn theme and I have text in the collections and in the product description with bullet points but this bullet points are not next to the text, they are above the text, it should be like following

  • text

Can you help me with the code, I tried several steps but it was not working.

Hoping for a Christmas wonder.

Thank you

Hello,

Can you please share collection or product link where you are facing this issue?

sure, one sec plesae

sure i am waiting for your response

@ladybird3001

From the Shopify Admin go to your theme and click on Edit theme. Then look for Theme settings in the leftmost sidebar (cog icon)

and scroll down until you see Custom CSS. From there paste the following snippet

li p {
    display: inline;
}

Fahrradbeleuchtung – fenixlight

please follow this steps

  1. Open your theme editor
  2. Click on settings
  3. Custom css

Paste the below codes

.collection-hero__description.rte ul p {
    display: inline;
}

If you still face the same issue feel free to message here again

OMG, thank you it is working….I spent so much time

and how to have the text over the entire side not stopping in the middle or after the middle?

@ladybird3001

From the same Custom CSS tab add the following snippet below the one I shared before

.collection-hero__description {
    max-width: unset;
}

exellent and when I want this in the product description which code i need then li p is not working! thank you

@ladybird3001 please share an example of a product page where this issue is happening

SET, Limitierte Promotion 2025 - Fenix BC26R Fahrradlicht-Set – fenixlight

@ladybird3001 the issue appears to be fixed there

i want to have it like at the collection site, the text over the entire side and not stopping in the middle

@ladybird3001 in Custom CSS add the following

.rich-text__blocks.left {
    max-width: unset !important;
}