Hello folks,
how can I reduce the line-height between the sub-heading and heading? It consumes too much space… Can I insert the CSS-Code right at the slide-show section?
My URL is: www.moncourage.de
Thanks so much.
Eva
Issue: Excessive line-height between sub-heading and heading in a mobile slider is consuming too much space.
Solution Provided:
For a single section:
margin-top: 0For all image-with-text sections:
Status: Solution offered with code snippets for both targeted and site-wide implementation. Discussion appears resolved with actionable CSS fixes provided.
Hello folks,
how can I reduce the line-height between the sub-heading and heading? It consumes too much space… Can I insert the CSS-Code right at the slide-show section?
My URL is: www.moncourage.de
Thanks so much.
Eva
Hi @Eva_Helmeth to reduce the space for one section you can go to that section in customizer and add this css in custom css box.
h3.heading.h3 {
margin-top: 0;
}
to reduce for all image with text sections add this css at the bottom of theme.css file
.image-with-text__content-wrapper .heading.h3 {
margin-top: 0;
}