How do I decrease the padding here only on mobile, URL is cheffings.net
1 Like
Hello @lukafernada
You can add code by following these steps
-
Go to Online Store β Theme β Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hi @lukafernada
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
@media only screen and (max-width: 749px){
.section-template--20584607220061__collapsible_content_GQb8L3-padding {
padding-top: 0 !important;
}
}
And Save.
Result:
Please donβt forget to Like and Mark Solution to the post that helped you. Thanks!


