- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2021 01:11 PM
Hello There - Is there a reason why bulletted formatting does not line up ie, under Description when creating a Catalog Item. Is it possible to line up bullet points? Thank you.
Solved! Go to Solution.
- Labels:
-
Service Catalog
- 3,740 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2021 01:44 PM
In the backend I see it aligns different:
Based on this Stackoverflow post:
you can do the following:
Then add styling:
(change <ul> to <ul style="list-style-position: outside; margin-left: 1em;">)
The result:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2021 01:23 PM
Hi,
I think that is OOB behavior as this is render from widget script.
Thanks,
Ashutosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2021 01:39 PM
Hi Winnie,
If there is a reason this is the default, I don't know what it would be other than an oversight, or someone's personal preference. You can change this pretty easily. On the HTML field in question, such as Description on the Catalog Item form, click the Source code icon <>. You'll see your unordered list defined like this by default
<ul style="list-style-position: inside;">
All you have to do is change this line to something like this
<ul style="list-style-position: inside; text-indent: -1.4em;">
You can tweak the -1.4 number depending on your preference and the font used - different bullets/fonts will require more or less space for the indent of wrapped rows, which is likely why they left it not indenting to begin with. I hadn't noticed this before - we might not have any verbose bullets, but I'll be checking/correcting them all now. Get out your ruler and enjoy the harmonious alignment!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2021 09:29 PM
Thank you Brad, this worked. I have also replied to Willem below who had the same solution as yourself. I also added another query to his reply. Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2021 01:39 PM