Happening now | Office Hours: Customizing Your Theme With Moeed | Ask your questions now!

App block padding

Solved

App block padding

MrInappropriate
Excursionist
17 1 0

Hello people,

 

I have an app called Breadcrumbs Galore which puts the breadcrumbs as an app inside an app block in the header on my store.

 

Do you have any idea how I can remove the padding around the Breadcrumbs app inside the Apps block?  I want to remove the white space at the top and the bottom of the breadcrumbs path.

 

I've been trying to fix this for hours, if you have any idea I'd love to know, thank you so much!!

 

My website is https://mrinappropriate.co.uk/ (NSFW).

 

Thank you!!

 

MrInappropriate_0-1714512100821.png

MrInappropriate_2-1714512142467.png

 

 

Accepted Solution (1)

sahilsharma9515
Shopify Partner
1280 165 249

This is an accepted solution.

Hi @MrInappropriate Please add the code in your theme.css/base.css/style.css file which is available in your theme.

nav.breadcrumbs.shown-on-load {
    padding: unset !important; 
    margin: unset !important; // If you want margin then remove this code.
}

If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:

  1. Login in shopify admin.
  2. Click on the Online Store.
  3. Then click on the button next to Customize in live Theme.
  4. Click Edit Code.
  5. Search theme.css/base.css/index.css/style.css in the code in left hand side which ever is available in your theme.
  6. You can add the above code at the bottom of the file.

Result:

sahilsharma9515_0-1714539651184.png

If you will unable to implement the same then I'm happy to do this for you, let me know. I can implement the code changes so that this will work well for you.

 

Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

 

Best Regards

Sahil

- Your

 Coffee Tip 

can create magic in coding ❤️❤️

- Need a Shopify Developer? CHAT ON WHATSAPP or EMAIL ME !


- Hopefully the solution will help you. If yes then Please hit

 Like 

and

 Mark it as solution! ❤️


View solution in original post

Replies 2 (2)

sahilsharma9515
Shopify Partner
1280 165 249

This is an accepted solution.

Hi @MrInappropriate Please add the code in your theme.css/base.css/style.css file which is available in your theme.

nav.breadcrumbs.shown-on-load {
    padding: unset !important; 
    margin: unset !important; // If you want margin then remove this code.
}

If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:

  1. Login in shopify admin.
  2. Click on the Online Store.
  3. Then click on the button next to Customize in live Theme.
  4. Click Edit Code.
  5. Search theme.css/base.css/index.css/style.css in the code in left hand side which ever is available in your theme.
  6. You can add the above code at the bottom of the file.

Result:

sahilsharma9515_0-1714539651184.png

If you will unable to implement the same then I'm happy to do this for you, let me know. I can implement the code changes so that this will work well for you.

 

Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

 

Best Regards

Sahil

- Your

 Coffee Tip 

can create magic in coding ❤️❤️

- Need a Shopify Developer? CHAT ON WHATSAPP or EMAIL ME !


- Hopefully the solution will help you. If yes then Please hit

 Like 

and

 Mark it as solution! ❤️


MrInappropriate
Excursionist
17 1 0

Thank you so so much, that worked!!!