Forums

Change Font Color from Blue To Purple

313designs 04 Mar, 2016
Greetings,


How do I change the font color of Chronoforum to purple. I actually changed the primary color within the forum.css file however the change isn't being reflected on the forum.


Please advise,
James
GreyHead 05 Mar, 2016
Hi James,

I know nothing about ChronoForums but I checked the font colour here in my browser developer tools and it is being set by the site template -
#rt-mainbody {
    color: #606060;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
If I add this to the forum CSS file components/com_chronoforums/chronoforums/assets/css/default.css that seems to work:
.cfu-content {
    color: purple;
}

Bob
313designs 05 Mar, 2016
Unfortunately Bob, that didn't work...seems like it should...but it won't reflect on the forum.
GreyHead 06 Mar, 2016
Hi James,

I installed ChronoForums to test and its working OK for me. I did have to do a hard re-load of the page to over-write the cached version of the file.

Bob
This topic is locked and no more replies can be posted.