-
Author
Tagged: top bar, social, phono number
-
August 3, 2014 at 04:18 #24438ModelParticipant
Hi:
I need to be able to add more social icons on the top bar. How can this be accomplished.
Also, I need to add the telephone number int he top left and it should be displayed in all devices because right now when you see it on an iphone on the email address is visible the the social icons disappeared. Please help me ASAP>
August 6, 2014 at 12:57 #24837CatalinModeratorHello,
Add this in your functions.php file from your child theme.
COPY CODEfunction custom_icon() { echo "<li><a href="" target="_blank" title=""><i class="">custom</i></a></li>"; } add_action( 'kleo_extra_social_icons','custom_icon');
You need to create your link with new classes and icon tho.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 15, 2014 at 07:06 #31773bogdanceParticipantThank 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
The topic ‘Top Bar’ is closed to new replies.