Forum Discussion
twitchee27
13 years agoExpert
Thanks for the tip, jc758! Unfortunately, adding "list-style-type:disc;" didn't adjust anything in the component. any other ideas?
AdamN
13 years agoKhoros Oracle
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.