Solved

Reduce Space Between Product Image And Product Title On Mobile Debutify

Liam771
Tourist
7 0 0
Hello, I want to reduce the space between my product image and product title on mobile specifically. I tried to do it myself and looked for the solution, but no luck. If anyone could help that would be much appreciated. I Just want to move the bottom of my product image closer to the product title on mobile.

I am using Debutify Theme and my URL is mysummerparty.com

Accepted Solution (1)

VIEKIN
Shopify Partner
656 79 93

This is an accepted solution.

hi @Liam771 ,

Can you please follow the step below:

You going to Online Store => Theme => Customize Code => Assets => Theme.scss.css
Then add the code at the bottom this file:

@media only screen and (max-width: 767px){

.product-single__meta--wrapper{

margin-top: 5px;

}

}

You can please Like and Accepted Solution if my suggestion helpful. And if you want to customize or develop new feature on Theme or App => Contact to us via Email or Skype.
- Contact Support : Gmail | Skype: live:.cid.309f2fbaceec513

View solution in original post

Replies 3 (3)

VIEKIN
Shopify Partner
656 79 93

This is an accepted solution.

hi @Liam771 ,

Can you please follow the step below:

You going to Online Store => Theme => Customize Code => Assets => Theme.scss.css
Then add the code at the bottom this file:

@media only screen and (max-width: 767px){

.product-single__meta--wrapper{

margin-top: 5px;

}

}

You can please Like and Accepted Solution if my suggestion helpful. And if you want to customize or develop new feature on Theme or App => Contact to us via Email or Skype.
- Contact Support : Gmail | Skype: live:.cid.309f2fbaceec513
Liam771
Tourist
7 0 0

I do not have Theme.scss.css, I have them.scss.liquid. I added it to the liquid file and it worked! Thanks you so much is there any way you could help make the product font bigger on mobile as well.

 

VIEKIN
Shopify Partner
656 79 93

hi @Liam771 ,

You can please add the short code this to the same file you added:

 

@media only screen and (max-width: 767px){
.product-single__title {
 font-size: 35px !important;
}
}

 

You can please Like and Accepted Solution if my suggestion helpful. And if you want to customize or develop new feature on Theme or App => Contact to us via Email or Skype.
- Contact Support : Gmail | Skype: live:.cid.309f2fbaceec513