edensbakehouse.nl
yuidri
I would like to make the social media icons in the footer of my website bigger in size.
As big as the shopping cart icon on the top of my website in the header.
especially on mobile, the icons at the bottom of the page are very small.
Please help!
1 Like
Hi @EdensBakehouse
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.footer-block--newsletter .list-social__item .svg-wrapper .icon {
height: 4rem !important;
width: 4rem !important;
}
@media only screen and (max-width: 749px){
.footer-block--newsletter .list-social__item .svg-wrapper .icon {
height: 34rem !important;
width: 3rem !important;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
It changed the size of the icons on Desktop, but not on mobile.
They remain small on mobile and i don’t like them bigger on desktop.