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
Can you help me with the code, I tried several steps but it was not working.
Hoping for a Christmas wonder.
Thank you
Devgenz
December 23, 2025, 4:57pm
2
Hello,
Can you please share collection or product link where you are facing this issue?
Devgenz
December 23, 2025, 4:59pm
4
sure i am waiting for your response
ladybird3001:
www.fenixlight.at
@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;
}
Devgenz
December 23, 2025, 5:03pm
7
please follow this steps
Open your theme editor
Click on settings
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;
}
StackingContext:
li p
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
@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;
}