-
Beta Was this translation helpful? Give feedback.
Answered by
hfloyd
May 28, 2022
Replies: 1 comment 5 replies
-
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
hfloyd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hmm I've managed to fix it for the "Brands" group... I though I could perhaps get rid of the slanted-look if I changed it from using "i" to using "span" for the HTML template. I am using Umbraco 9... I'm not sure if the back-office CSS has changed at all such that this now conflicts, but I was able to get it working when I did this:
Use "Override back-office template" with a span and a font size:
<span class="fab {icon}" style="font-size: 30px;"></span>
I also changed the "Css File" property to use the "all.css" file for each of the configurations. Now all the "Brands" icons appear, and it looks like the "Solid" ones as well... But the "Regular" are still problematic.
Investigating what m…