Thank you for this solution included in my functions.php file in my child theme like so:
add_action( 'kleo_get_social_profiles', 'kleo_my_extra_social_icons' ); function kleo_my_extra_social_icons( $icons ) { $icons .= '<i class="icon icon-eye"></i> AusArt '; $icons .= '<i class="icon icon-gift"></i> Bogdan '; $icons .= '<i class="icon icon-fire"></i> BogDance '; $icons .= '<i class="icon icon-users"></i> com.ART.com '; return $icons; }
This is great, was delivered fast and it puts custom link icons and names on the left of the Top Menu. I appreciate it very much. However, it lacks the animated on-hover expanding behavior of the built in social icons and the separating lines. Q1: Can the animations and separation be enabled in this solution (custom CSS classes?) Q2: What is the location, where the Social ICONS and the corresponding Social Networks NAMES are specified, please? Editing them at source may be the option for me? Thanks