I would like to change only on mobile the display of a section (position of an image in the top center, size of the image, title in bold, & being able to adjust the size of the text of the description), BUT ONLY ON MOBILE
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 only screen and (max-width:749px){
.swiper-slide.product_slider_md_box_new.swiper-slide-active {
flex-direction: column;
}
.product_slider_md_box_left_new {
width: 50%;
height: 100%;
align-self: center;
}
}