How can I change the color of the font used in the statistics? And how do I align the columns left instead of centre and right?
You can change thread title color by open template BRMS_ModernStatistic_dark.css and find Code: .BRMSContainer.BRMSContainerDark .itemContent .itemTitle, .BRMSContainer.BRMSContainerDark .itemContent .itemTitle a{ color:#fff; } Change #fff by an other hex color value by your way. To float left thread title, easy by add float: left into above class. It will be Code: .BRMSContainer.BRMSContainerDark .itemContent .itemTitle, .BRMSContainer.BRMSContainerDark .itemContent .itemTitle a{ color:#fff; float: left; } Regards,
Thanks for the tip, Brivium Regarding left alignment, that fixed only the thread titles. Usernames in the right column is still right aligned. How to fix those as well?
You can find Code: .BRMSContainer .itemContent .itemDetailName { text-align: right; } And change to Code: .BRMSContainer .itemContent .itemDetailName { text-align: left; } Best Regards,