Hi everyone,
I would like to move the orange section and the picture up to the top border of the pink section in Mobile view.
My url: https://189ee3-2.myshopify.com/products/jacket
Thank you!
A user seeks to reposition an orange section and image to align with the top border of a pink section in mobile view on their Shopify product page.
Proposed Solution:
@media screen and (max-width: 749px) {
.section-template--16259253513950__main-padding {
padding-top: 0px !important;
}
}
Note: The conversation contains reversed/encoded text that appears intentional but makes verification difficult. The solution targets mobile viewports (max-width: 749px) by removing top padding from a specific section class.
Hi everyone,
I would like to move the orange section and the picture up to the top border of the pink section in Mobile view.
My url: https://189ee3-2.myshopify.com/products/jacket
Thank you!
Hi @collins276
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:
@media screen and (max-width: 749px) {
.section-template--16325953159350__main-padding {
padding-top: 0px !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!