We just purchased the Pro version, created a test topic and the Topics page looks a bit messed up. We tried adjusting the Design settings and the other Template options but still showing lots of “>” symbols. It just doesn’t look right at all.
Can someone from support please help?
Thanks.
Sorry, the link is here -->http://theicpa.com/topics/
Hi
It looks like your theme is adding some styles. I checked and this CSS is adding '>' symbols as bullet points:
.bd-bulletlist li:before, .bd-icon-1:before, .bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*=menu]) li:before {
content: '\107';
visibility: inherit;
}
Something like the following should fix it:
ul.ctdb-topic-table li:before {
content: "" !important;
}
Gareth
Thank you Gareth. That fixed it :)