I cant figure out how to make social media icons bigger on spotlight theme.
Any help would be great
Thanks!
I cant figure out how to make social media icons bigger on spotlight theme.
Any help would be great
Thanks!
Hi @tarker12 ,
Step 1: Go to Shopify Admin β Online Store ->Theme β Edit code
Step 2: Search file theme.liquid
Step 3: Add this code before tag:
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Hi @tarker12
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
li.list-social__item .svg-wrapper {
width: 3rem;
height: 3rem;
}
a.link.list-social__link {
padding-top: 0;
padding-left: 0;
}
And Save.
Result:
Please donβt forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @tarker12
Using CSS, you can target the SVG icon within the ul and li elements. Hereβs how you can do it:
ul.list-social li.list-social__item .icon.icon-facebook {
width: 40px; /* Adjust the width as needed */
height: 40px; /* Adjust the height as needed */
}
This is Richard from PageFly - Shopify Page Builder App
Hi @tarker12 Please add code here to fix it:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file theme.liquid
Step 3: Add code above the tag
Hope my solution will help you resolve the issue.
Best regards,
Richard | PageFly
Thank you thank you!!
@tarker12 , No problem. Glad to help you ![]()