Home › Forums › Jevelin Theme › social media icon arrangement
Home › Forums › Jevelin Theme › social media icon arrangement
My client wants to know if arrangement of social media icons can change, she would like Instagram to be first, Facebook 2nd, Twitter 3rd and the rest after that. Is that possible? Thanks!
attached is the default order of them
http://dev.greenspringstation.net/content/
Hi @juliesparks,
I hope you are well today and thank you for your question.
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.sh-nav li.menu-item.sh-nav-social a { float: right; } .sh-nav li.menu-item.sh-nav-social a.social-media-pinterest { position: absolute; right: -30%; top: 0; } .sh-nav li.menu-item.sh-nav-social { position: relative; }
Best regards,
Shufflehound team
Thank you, that worked in the header. They also want that in the collapsable menu area, see attached
and also, can we turn the breadcrumbs off, thanks
Along with above CSS code please try using below custom CSS code to achieve this.
.sh-header-right-side .header-mobile-social-media a { float: right; width: 25%; } .sh-header-right-side .header-mobile-social-media a.social-media-pinterest { position: absolute; right: 0; top: 0; } .sh-header-right-side .header-mobile-social-media a:first-child{ border-left: 1px solid #303030; } .sh-header-right-side .header-mobile-social-media a.social-media-twitter { margin-right: 25%; } #breadcrumbs { display: none; }