Listing is not working for the Article Feature

srsakib

Active Member
Hello,
The Listing feature both order list & unorder list is not showing on the main post after publishing it. I tried to resolve it using ol & ul tags. But, it's not working for this too.

Please resolve the issue.
 
You can add the following to a <style> tag to resolve this until our 6.5 version has been released:

CSS:
#article-content ol li {
    list-style: decimal;
}
#article-content ul li {
    list-style: initial;
}
 
You can add the following to a <style> tag to resolve this until our 6.5 version has been released:

CSS:
#article-content ol li {
    list-style: decimal;
}
#article-content ul li {
    list-style: initial;
}
Thank you so much.
 
Back
Top