Forum Replies Created
Viewing 1 post (of 1 total)
-
Author
-
bogdanceParticipant
Thank you for this solution included in my functions.php file in my child theme:
COPY CODEadd_action( 'kleo_get_social_profiles', 'kleo_my_extra_social_icons' ); function kleo_my_extra_social_icons( $icons ) { $icons .= '<a href="http://ausart.biz" target="_blank" rel="nofollow"><i class="icon icon-eye"></i> AusArt </a>'; $icons .= '<a href="https://bogdan.com.au" target="_blank" rel="nofollow"><i class="icon icon-gift"></i> Bogdan </a>'; $icons .= '<a href="http://bogdance.us" target="_blank" rel="nofollow"><i class="icon icon-fire"></i> BogDance </a>'; $icons .= '<a href="http://comdotart.com" target="_blank" rel="nofollow"><i class="icon icon-users"></i> com.ART.com </a>'; return $icons; }
This is great and was delivered fast, and it puts custom link icons 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? Q2: What is the location, where the Social ICONS and the corresponding Social Networks NAMES are specified, please? Editing them at source should not alter their appearance or on-hover behavior… hope I’m wright? Thanks
-
AuthorPosts
Viewing 1 post (of 1 total)