Do margins break bullets?

Hi guys,

I’ve been trying to get to the bottom of this but my margins seem to be breaking my bullets?

Has anyone ever experienced something like this or do they have a fix? Thanks.

That’s a CSS problem and without the code (or better: a link to the site) we can only ask our crystal ball. :slight_smile:

Thanks I added a small margin-left to my ul and ol’s in my css and it fixed them, so they were just getting cut off.

What’s interesting is that I would have assumed all kirby text would use this css below which is the default css from the starterkit, I thought it may have something to do with the WYSlWYG editor I was using.

/* Text blocks */
.text ul,
.text ol {
           margin-left: 1em;
}

However when I inspected lists in my text they were using the .main css. So adding the below css fixed it.

.main ul,
.main ol{
 margin-left: 1.5em;
}

Anyway answered, thank you.