Taste Theme Spacing Mobile

Solved

Taste Theme Spacing Mobile

Ryan1998
Pathfinder
101 2 32

Screenshot 2024-03-23 at 20.55.16.png

Screenshot 2024-03-23 at 20.54.50.png

Please can someone help. For mobile how do I remove the spacing firstly on the footer between the links and the payment icons. Secondly between the slideshow and Top recommended. Im using the taste theme.

 

https://stopnook.com/

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 520

This is an accepted solution.

Hey @Ryan1998,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

 

<style>
@media only screen and (max-width: 989px) {
.slideshow__controls.slideshow__controls--top.slider-buttons.no-js-hidden {
    display: none !important;
}

footer .footer-block.grid__item.footer-block--menu,
ul.footer-block__details-content.list-unstyled{
    margin-bottom: 0 !important;
}
}
</style>

 

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1711228587166.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 2 (2)

ThePrimeWeb
Shopify Partner
2139 616 520

This is an accepted solution.

Hey @Ryan1998,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

 

<style>
@media only screen and (max-width: 989px) {
.slideshow__controls.slideshow__controls--top.slider-buttons.no-js-hidden {
    display: none !important;
}

footer .footer-block.grid__item.footer-block--menu,
ul.footer-block__details-content.list-unstyled{
    margin-bottom: 0 !important;
}
}
</style>

 

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1711228587166.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
Ryan1998
Pathfinder
101 2 32

Legend! Thanks