Article List Style Position Property
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2024 10:02 AM
Within the creation of a knowledge article, we utilize a lot of bullet lists that are published for employees on our ECP portal. Once published, the bullets are stuck in a property style of "inside" (see below #1). We know we can change this inside the knowledge article source code (see below #2) but it's becoming another maintenance nightmare when we have hundreds of articles to maintain.
My question, is how are we able to get this setting to override on the portal without having to manually change each article code? I tried to update the knowledge widget CSS with no luck. Is there a way to do this inside the knowledge style sheet?
After updating article source code (preferred state):
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2024 02:21 AM
Very good! Looks great indeed.
Is there a way to make this default, so I don't need to change it every time?
Best regards,
JV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2025 11:07 PM
One way is to use the CSS !important keyword:
.kb-article-content ul, ol {
list-style-position: outside !important;
}