Make svg icons in header a little bit bigger

Hi guys,

How can I make the icons in my header a little bit bigger. I’d really appreciate any help! Website: seraneeva.com

1 Like

Hi @flammagreg

Check 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:

.standalone-icon--wrapper .pswp__icn, .standalone-icon--wrapper svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
}

And Save.

Result:

Note: This will also increase on the mobile screen. Let me know if you dont like to include. Thanks!

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

One more question. I have a button scaling effect where is buttons are hovered the box surrounding the text gets smaller. Although, I recently changes the ‘border-radius’ of the buttons the be 2.5px. Do you know what I could add to the scaling effect that when the buttons are hovered, the border radius remains at 2.5px rather than reverting back to fully square edges?