Hi Kelly,
I’m glad to hear Menu Social Icons has been useful for you! I don’t *think* an icon for Bloglovin’ is included in FontAwesome, but if you see an icon that makes sense for you, you can add it using the same method as an icon for RSS.
For RSS, please scroll to the very bottom of the plugin description. You see that the last example is for how to add an icon for RSS (or any other icon supported by FontAwesome). This is a new filter added in version 1.2.
(Excerpt from the description)
add_filter( 'storm_social_icons_networks', 'storm_social_icons_networks');
function storm_social_icons_networks( $networks ) {
$extra_icons = array (
'/feed' => array( 'class' => 'rss', 'icon' => 'icon-rss', 'icon-sign' => 'icon-rss-sign' ),
);
$extra_icons = array_merge( $networks, $extra_icons );
return $extra_icons;
}
Note that “/feed” can be anything that would be in the site address. For example “bloglovin.com” would also work.