Solved

How can I resize icons of Bold Subscription app via code injection?

panos920
Tourist
10 0 3

Hey all,

 

Not sure if this is something that you can help with as it revolves around an external app but here goes.  I am using Bold Subscription to manage product subscriptions, but the icons are somewhat obnoxiously large for my liking and I can switch them with default app settings.  

 

Can I force this via code injection? E.g. in image below, have the icons at 50% size (and maybe 75% on mobile)

panos920_0-1649016454476.png

 

Site, pupwater.com

 

Accepted Solution (1)

AvadaCommerce
Shopify Partner
3879 839 955

This is an accepted solution.

Hi @panos920 ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css->paste below code at the bottom of the file:

.bsub-widget__group-header .bsub-widget__image {
    width: 2em !important;
    height: 2em !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned

View solution in original post

Replies 2 (2)

AvadaCommerce
Shopify Partner
3879 839 955

This is an accepted solution.

Hi @panos920 ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css->paste below code at the bottom of the file:

.bsub-widget__group-header .bsub-widget__image {
    width: 2em !important;
    height: 2em !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned
panos920
Tourist
10 0 3

Thank you!