The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Bullets and Numbers...
 
Share:
Notifications
Clear all

[Solved] Bullets and Numbers not displaying for unordered and ordered lists...

4 Posts
2 Users
1 Likes
1,280 Views
Posts: 2
 Ryan
Topic starter
(@ryan)
New Member
Joined: 3 years ago

Great plugin. I only have one minor issue. I have installed the plugin on the Soledad WordPress theme. When I post comments using bullets (ul) or ordered lists (li), neither shows bullets or numbers. The items are indented and listed on separate lines.

Also, there was no formatting for quotes within the comments, but I was able to fix that by adding some css.

So instead of this

  • test
  • test
  • test

It looks like this:

       test

       test

       test

 

Screen Shot 2020 11 01 at 7.08.24 PM

 

 

3 Replies
Asti
Posts: 7105
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

@ryan,

Please leave some example URL to allow us to check the issue. 

2 Replies
 Ryan
(@ryan)
Joined: 3 years ago

New Member
Posts: 2

@asti

Here's a link to an ordered list not displaying correctly.

This is an unordered list not displaying correctly.

 

Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7105

@ryan,

This is a CSS conflict with the active theme. It adds list-style: none; CSS rule for all li elements.

CSS conflict

To solve the issue use the CSS code below:

#wpdcom ol li {
list-style-type: decimal !important;
}
#wpdcom ul li {
list-style-type: disc !important;
}

Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again. 

Share: