Removing Social Media Icons in Mobile View

Hi there!

I added social media icons in the header for the desktop version. However, I do not want these social media icons to show in the mobile version & only in the hamburger drop down menu at the bottom like how it is now:

Wondering if there is a code available to do this?

Site is: r3di-shop.com

Thanks so much in advance. :slightly_smiling_face:

Hi @create_onvirtu !

This is Richard Nguyen from PageFly - Advanced Page Builder. I would love to give you some recommendation

Please paste this code at the bottom of component-list-social.css under assets in theme code files;

@media screen and (max-width: 768px) {
.list-social__link {
display: none !important;
}
}

Like this;

I hope my recommendations will be beneficial for you, let me know if you have any questions. Cheers!

Best Regards;
Richard - PageFly

Hi Richard, thank you so much for the fast response!

The code did work in taking off the social media icons from the header but it removed the icons from the hamburger menu. Is there another code to keep it on there?

For example:

After code:

Never mind, I solved it!

Hi @create_onvirtu !

Please paste this code at the bottom of component-list-social.css under assets in theme code files;

@media screen and (max-width: 767px){
.header-list-socail{
   display: none !important;
 }
}

I hope my recommendations will be beneficial for you, let me know if you have any questions. Cheers!

Best Regards;
Richard - PageFly