Hi can you please help me make the social icons horizontal? also even though I can see the icons in shopify (mobile version) but in my mobile I can’t.
Topic summary
A user seeks help making social media icons display horizontally in their Shopify theme’s mobile menu drawer. The icons are visible in Shopify’s mobile preview but not on actual mobile devices.
Attempted Solutions:
- One responder provided CSS code to be added before
</body>intheme.liquid, targeting the menu drawer with flexbox properties and media queries for mobile screens. - Another suggested placing similar CSS in the theme’s custom code section within customization settings.
Current Issue:
The user reports that implementing the CSS code disrupts the page order/layout (shown in screenshots). The discussion remains unresolved, with a third participant asking if the user can send code, though this message appears incomplete or corrupted.
Note: Several code snippets and portions of text appear reversed or garbled in the original conversation, suggesting possible encoding issues.
Hello @MT27
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Hi I coppied it to the blue line as you can see from the screenshot but nothing happened, can you check if I have done something wrong? Thank you
Add this into your custom code section in your theme customized settings options.
@media(max-width: 768px){
.menu-drawer .list-social__link {
padding: 10px !important;
}
.menu-drawer__utility-links ul {
display: flex !important;
justify-content: center !important;
align-items: center !important;
column-gap: 34px !important;
vertical-align: middle;
padding: unset !important;
margin: unset !important;
}
ul.list.list-social.list-unstyled li {
padding: unset !important;
height: 30px !important;
}
.link{
display: unset !important;
}
}
Hi!
Are you able to send code for doing this in a footer?





