beccatsgg Posted July 17 Share Posted July 17 Hi! I'd like for the social media icons to appear on mobile view as they do on our desktop view. Code that I've found on the forum has not worked so far. https://www.sarahgormley.com/ TIA! Link to comment
tuanphan Posted July 19 Share Posted July 19 You can use this code to Website Tools > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function(){ $('nav.SocialLinks').clone().insertAfter('nav.Mobile-overlay-nav.Mobile-overlay-nav--primary'); }); </script> 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
beccatsgg Posted July 19 Author Share Posted July 19 Thank you so much - this worked to add the icons to the menu, but I'd like to have the icons show up on the mobile header. See circled position below. Link to comment
tuanphan Posted July 25 Share Posted July 25 On 7/20/2024 at 3:37 AM, beccatsgg said: Thank you so much - this worked to add the icons to the menu, but I'd like to have the icons show up on the mobile header. See circled position below. Use this new code <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function(){ $('nav.SocialLinks').clone().insertAfter('button.Mobile-bar-menu'); }); </script> <style> [data-nc-base="mobile-bar"] [data-nc-container="top-left"] { flex-direction: row-reverse !important; justify-content: space-between !important; } </style> 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment