Dec 25, 2024 12:56 am
I know that wpForo uses my site fonts, but I want to change the font specifically for the forum since I need it to have a different font.
I have used the CSS from this thread Change font – How-to and Troubleshooting – wpForo Support Forum
#wpforo #wpforo-wrap *:not(.fa):not(.fas):not(.far):not(fab) { font-family: "Arial Rounded MT Std", Arial, sans-serif !important; }
It has worked really well, but it breaks the TinyMCE icons as per the attached image. The TinyMCE icons are not Font Awesome (far) fonts, and so they are not excluded by the "not" clauses in the CSS.
Is there a workaround that would allow me to have both a custom font and working MCE?
5 Replies
Dec 25, 2024 6:57 am
Try
#wpforo #wpforo-wrap *:not(.fa,.fas,.far,fab,.mce-ico) { font-family: "Arial Rounded MT Std", Arial, sans-serif !important; }
Dec 25, 2024 11:05 am
Hi, thanks for the quick response, but unfortunately the icons remain the same with that css update.
Dec 25, 2024 11:42 am
It works perfectly! Not sure what happened the first time. I really appreciate your help on this.
Merry Christmas!