Brent_Dickens Posted December 1, 2020 Share Posted December 1, 2020 I have a client who wants the social icons in a header on the right hand side. Love some ideas on how to do this. They also want a centred layout for the logo and navigation. This is the current layout but I need to correct it moving the Social icons next to 'About' Love to hear any suggestions 🙂 Link to comment
tuanphan Posted December 5, 2020 Share Posted December 5, 2020 Left or right side? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brent_Dickens Posted December 6, 2020 Author Share Posted December 6, 2020 On 12/5/2020 at 9:51 PM, tuanphan said: Left or right side? They would like the links on the right side next to the About link Link to comment
plantshop203 Posted February 14, 2021 Share Posted February 14, 2021 Bumping this question. I would love to move my social icon to the left of my site logo! Any help would be appreciated. theoldyew.com Link to comment
creedon Posted February 14, 2021 Share Posted February 14, 2021 @plantshop203 Add the following to Design > Custom CSS. /* begin arrange elements for moving social icons after navigation */ .header-layout-branding-center .header-nav .header-nav-item { margin-right : 1.5vw; } .header-nav-wrapper { align-items : center; display : flex; } /* end arrange elements for moving social icons after navigation */ Add the following to Settings > Advanced > Code Injection > FOOTER. <script>  $( ( ) => {     /*       move social icons after navigation for v7.1 site using navigation, logo,    cta inline header layout        SS version: 7.1        */       $( '.header-display-desktop .header-actions-action--social' )       .appendTo ( '.header-display-desktop .header-nav-wrapper' );       } );     </script> This is for a v7.1 site. Let us know how it goes. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
plantshop203 Posted February 14, 2021 Share Posted February 14, 2021 12 hours ago, creedon said: @plantshop203 Add the following to Design > Custom CSS. .header-actions-action--social {  display : inline-flex;  margin-left : 1vw;    } Add the following to Settings > Advanced > Code Injection > FOOTER. <script>  $( ( ) => {     /*       move social icons after navigation for v7.1 site using navigation, logo,    cta inline header layout        SS version: 7.1        */       $( '.header-display-desktop .header-actions-action--social' )       .appendTo ( '.header-display-desktop .header-nav-wrapper' );       } );     </script> This is for a v7.2 site. Let us know how it goes. THANK YOU. This works great. I'm now wondering... how can I change the top padding of the new placement of the IG icon? It's sitting just a little above the nav items. I tried this: .header-actions-action--social {  display : inline-flex;  margin-left : 23px!important;  padding-top: 3px!important;  } but it changes the padding of all three of those items, not just the IG icon.  Link to comment
creedon Posted February 14, 2021 Share Posted February 14, 2021 @plantshop203 I've updated the CSS in my previous post. Replace the previous code with the new. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
plantshop203 Posted February 15, 2021 Share Posted February 15, 2021 Thank you! PERFECT! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.