Forum Discussion
jc758
14 years agoAdvisor
Hi ,
try to add a "list-style-type:disc;" on your ul or li...
this property might be set to 'none' in the lithium default css...
try to add a "list-style-type:disc;" on your ul or li...
this property might be set to 'none' in the lithium default css...
- twitchee2714 years agoExpert
Thanks for the tip, jc758! Unfortunately, adding "list-style-type:disc;" didn't adjust anything in the component. any other ideas?
- AdamN14 years agoKhoros Alumni (Retired)
It sounds like the community default stylings are taking precdence. If the inline styling isn't working for you, I'd suggest adding some CSS to your skin with selectors that are more specific than the defaults.
These are likely the default selectors that are styling your list:
#lia-body .lia-content ol #lia-body .lia-content ul
So perhaps try something like:
#lia-body .lia-content ul#RecentVideos, #lia-body .lia-content #RecentVideos li { list-style-type: disc; }
If that doesn't work, you may need to get even more specific.