Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I would like your help with an issue that is bothering us
We have made our online store exactly how we wanted it to look,
The main problem we want to solve now is that,
I would like the box with the share icons to be left aligned
Any solutions?
Site: https://www.petjoyfully.com
Solved! Go to the solution
This is an accepted solution.
Hey @Kostas_katal,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
@media only screen and (min-width: 750px) {
.list-social {
justify-content: flex-start !important;
}
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Hello @Kostas_katal
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.list-social {
justify-content: flex-start !important;
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Hey @Kostas_katal,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
@media only screen and (min-width: 750px) {
.list-social {
justify-content: flex-start !important;
}
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Thank you