On updating to version 3.2.2 of Cornerstone, the icons used on the home page of this site have disappeared: https://ptospeechanddrama.com/#student_parent_journeys
Inspecting the <i>
tag for each feature, the icon to display is stored in either the data-x-icon-s
or data-x-icon-o
attribute. I’m assuming that’s to correspond with FA’s solid or open icon styles. Unfortunately, the CSS for the icon still uses data-x-icon
to get the content of the icon:
#cs-content [data-x-icon]:before, #cs-content [class*="x-icon-"]:before {
content: attr(data-x-icon);
line-height: 1;
}
If you add the -s
or -o
to the content attr, the icons will display. Possibly need a couple more style declarations to account for the different variations of FontAwesome icon attributes!
I have cleared the style cache. Please let me know if you need any further info. Cheers, Ant.