I added this code which I found in support which helped with the icons in the navigation:
add_filter( ‘storm_social_icons_networks’, ‘storm_social_icons_networks’);
function storm_social_icons_networks( $networks ) {
$networks[‘twitter.com’][‘class’] = ‘msi-twitter’;
return $networks;
}
The issue is still that its somehow conflicting with the themes use of “FontAwesome”.
You will notice the problem with the fontawesome images above each blog topic.
Please advise.