-
Author
-
August 4, 2017 at 22:12 #169629
Hemmings
ParticipantHi,
Would there be any way to add social media icons to the footer with a shortcode?
Thanks,
Adam
August 5, 2017 at 17:28 #169688Kieran_SQ
ModeratorHi Adam,
Thanks for reaching out today, you can use the below shortcode anywhere in the footer widgets to display your defined social profiles.
[kleo_social_icons]
You can set your social profile by going to Theme Options > Social Info
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
August 5, 2017 at 18:04 #169697Hemmings
ParticipantHi Kieran,
Thanks for the shortcode. Unfortunately, it seems to display the icons vertically as bullet points in a list. Any way to force them to appear horizontally?
Thanks very much,
AdamAugust 5, 2017 at 18:31 #169698Kieran_SQ
ModeratorHey,
Please add the following to the KLEO Child theme or to Theme Options > General Settings > Scroll to: Quick CSS
#footer .kleo-social-icons li {list-style: none;display: -webkit-inline-box;margin-right: 10px;}
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
August 5, 2017 at 22:25 #169713vidjaylee
ParticipantHi,
Sorry to join up the discussion, Interesting topic.
I have one question, how change social icons?Thanks!
Ahmed.
August 6, 2017 at 00:24 #169726Kieran_SQ
ModeratorHi Ahmed,
Do you mean to add your own or change the existing ones?
If you mean to add your own please try this in your KLEO Child theme functions.php file
COPY CODEadd_action( 'kleo_get_social_profiles', 'kleo_my_extra_social_icons' ); function kleo_my_extra_social_icons( $icons ) { $icons .= '<li><a href="http://soundcloud.com" rel="nofollow"><i class="icon icon-soundcloud"></i> <div class="ts-text">Soundcloud</div></a></li>'; $icons .= '<li><a href="http://mixcloud.com" rel="nofollow"><i class="icon icon-mixcloud"></i> <div class="ts-text">Mixcloud</div></a></li>'; return $icons; }
Please adjust as needed.
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
August 6, 2017 at 00:39 #169728vidjaylee
ParticipantHi Kieran ,
change the existing ones, by rounded icone with default social backround color for exemple.
thank you for the snippet.Ahmed.
August 6, 2017 at 00:47 #169730Kieran_SQ
ModeratorHey
You could try the below CSS in your KLEO Child theme’s style.css or in Theme Options > General Settings > Scroll to: Quick CSS
.kleo-social-icons .icon-twitter:before {content: '\e967';}
In this example I have used Twitter, please change Twitter to your desired social network. Please replace e967 with your desired icon, you can see them all, and their corresponding numbers here http://fontello.com/
You can repeat this method for as many icons as you wanted to edit.
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
August 15, 2017 at 16:12 #170706Hemmings
ParticipantHi,
I’ve added
#footer .kleo-social-icons li {list-style: none;display: -webkit-inline-box;margin-right: 10px;}
to the Quick CSS section, but I’m not seeing any social icons yet. When I add the shortcode for social icons even with the CSS fix, they still list in a list form with bullets.Sorry for the problems with this and thanks for your help,
AdamAugust 16, 2017 at 11:04 #170823Kieran_SQ
ModeratorHi, please share a link to a page where I can see it live. What browser are you using? Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
August 16, 2017 at 12:11 #170831Hemmings
ParticipantHi,
You can see it in the footer of any of our pages (www.citizen-state.com). I’m using Chrome.
My best wishes and thanks,
AdamAugust 17, 2017 at 13:43 #170948Kieran_SQ
ModeratorHi, since it is added to the Socket area, this is the correct CSS:
COPY CODE#socket .kleo-social-icons li { list-style: none; display: inline-block; margin-right: 10px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
-
AuthorPosts
The topic ‘Adding Social Media Icons to Footer’ is closed to new replies.