Notifications
Clear all

wpForo 1.x.x [Solved] Font awesome problem.

3 Posts
2 Users
0 Reactions
782 Views
Posts: 17
Topic starter
(@savethehuman5)
Eminent Member
Joined: 6 years ago

Hi, the template of my site is font awesome,, and the wpforo use too.
I just want setup the show site including forum with custom fonts, after test with css finally 99% of all is ok and working, but the  tool bar of reply editor appear with icons messed up.

Here the css

*{
font-family: "Arial Rounded MT Std",Arial, sans-serif, FontAwesome,"Font Awesome 5 Free", Linearicons-Free !important ;
}

Please take a look on the attach.

 

2 Replies
Robert
Posts: 10549
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi @savethehuman5,

You've damaged all with your wrong CSS code. Please remove it. This makes tons of problems and there is no way to fix it. instead of that CSS code you should use something like this:

html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,
abbr,acronym,address,big,cite,code,del,dfn,
em,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td{
     font-family: "Arial Rounded MT Std",Arial, sans-serif;
}

Don't set Font-Awesome font for all HTML tags. And don't forget to delete all caches and press Ctrl+F5 to reset browser cache.

Posts: 17
Topic starter
(@savethehuman5)
Eminent Member
Joined: 6 years ago

Thanks for the fix.
Applied and all back to normal 🙂