How Do I Remove The White Space Between The Rich Text Header And Text?

Solved

How Do I Remove The White Space Between The Rich Text Header And Text?

Simon159
Explorer
115 0 21
Accepted Solution (1)
Danishshopdev
Shopify Partner
163 17 20

This is an accepted solution.

here you go, i have pasted both of code together so you can just paste it,
removed the code that you paste before.

@media (max-width:768px) {
    section#shopify-section-template--20357505843505__d60934c8-8051-45a9-ab6e-827b187f14bf .rich-text__text.rte {margin-top:0px}
    .product__description.rte p {
        margin-top: 3px;
    }
}

 
please like and accept the solution if its works 

thank you

banned

View solution in original post

Replies 4 (4)

Danishshopdev
Shopify Partner
163 17 20

Hello there,
try to paste this in your css file at the end of the code,

 

section#shopify-section-template--20357505843505__d60934c8-8051-45a9-ab6e-827b187f14bf .rich-text__text.rte {margin-top:0px}

 

if you want to do that just for mobile then paste this code, and skip the above one. 

 

@media (max-width:768px) {
    section#shopify-section-template--20357505843505__d60934c8-8051-45a9-ab6e-827b187f14bf .rich-text__text.rte {margin-top:0px}
}

 

banned
Simon159
Explorer
115 0 21

thank you that worked! I just have one more similar question. How do I get rid of the white space between the heading and text for the description section. 

Screenshot 2023-12-18 at 12.55.52 AM.png

Jasoliya
Shopify Partner
4820 625 1225

Add this code

.product__description  p {    margin-top: 0;}
Want custom changes? hire me.
3 months of Shopify for $1/month. Look here.
Email us Or WhatsApp, Try our Free app for product bundles and Codify Order Cancel or Order edit
Want to get Free review and advice for sale on store ?? just text me here
Danishshopdev
Shopify Partner
163 17 20

This is an accepted solution.

here you go, i have pasted both of code together so you can just paste it,
removed the code that you paste before.

@media (max-width:768px) {
    section#shopify-section-template--20357505843505__d60934c8-8051-45a9-ab6e-827b187f14bf .rich-text__text.rte {margin-top:0px}
    .product__description.rte p {
        margin-top: 3px;
    }
}

 
please like and accept the solution if its works 

thank you

banned