Make svg icons in header a little bit bigger

Solved

Make svg icons in header a little bit bigger

flammagreg
Trailblazer
276 0 39

Hi guys, 

 

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

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

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:

Made4uoRibe_0-1716747725498.png

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!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

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:

Made4uoRibe_0-1716747725498.png

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!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
flammagreg
Trailblazer
276 0 39

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?