can you give me a link to your site? So I can see the issue
Hi @Jmodine,
I’m using the theme for my corporate intranet, unfortunately I can’t provide a link that will work, but here’s a link to an image of what I’m talking about.
Any help will be greatly appreciate it.
Thank you so much.
https://www.dropbox.com/s/q8cjoqcaajedko3/Remove%20Green%20Dots.PNG?dl=0
It’s likely inheriting the bullets from your WordPress style.css rather than something coming from the bbPress stylesheet. So what you can do is add something like the below CSS to your bbPress stylesheet.
#bbpress-forums li {
list-style-type: none;
}
That will likely remove bullets from forum posts as well, but it’s hard to get specific without seeing the site itself.
Hopefully that takes you in the right direction.