Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1203667
    #1204107

    Hey Kyle,

    Please try changing the order of the social profiles here
    Image 2020-04-15 at 19.31.04.png

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1204417

    Hi Victoria,

    Thanks for the response, but is not my social icons in header and footer that i wanna change order.

    Is the order of social sharing element (https://kriesi.at/documentation/enfold/social-share-buttons/) on posts/portfolio and using the shorcode.

    Can you help?
    Thanks

    #1204834

    Hi,

    Please try this in Quick CSS:

    #header_main ul.social_bookmarks {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -moz-flex;
      display: -webkit-flex;
      display: flex;
      -moz-flex-flow: wrap;
      -webkit-flex-flow: wrap;
      flex-flow: wrap;
    }
    #header_main ul.social_bookmarks .social_bookmarks_linkedin {
      order: 0;
    }
    #header_main ul.social_bookmarks .social_bookmarks_twitter {
      order: 1;
    }
    #header_main ul.social_bookmarks .social_bookmarks_facebook {
      order: 2;
    }

    Best regards,
    Rikard

    • This reply was modified 4 years, 3 months ago by Rikard.
    #1205518

    Hi Rikard,

    Using you code i was able to achieve what i need. Thank you very much.
    Cheers

    /***** Change order in the social share *****/
    #top .av-social-sharing-box-minimal .av-share-box ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -moz-flex;
      display: -webkit-flex;
      display: flex;
      -moz-flex-flow: wrap;
      -webkit-flex-flow: wrap;
      flex-flow: wrap;
    }
    .av-share-box ul .av-social-link-linkedin {   order: 0;}
    .av-share-box ul .av-social-link-twitter {   order: 1; }
    .av-share-box ul .av-social-link-facebook {   order: 2; }
    .av-share-box ul .av-social-link-mail {   order: 3; }
    #1205571

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Social share buttons order’ is closed to new replies.