Hi guys,
Would like to reduce gab between header lines, and gap between body text and image in mobile view
Thank you,
Hi guys,
Would like to reduce gab between header lines, and gap between body text and image in mobile view
Thank you,
@Alliance Put below css into theme.liquid file before closing tag
@media only screen and (max-width: 749px)
.template-index .section-header .h2 {
line-height: 28px !important;
}
.custom-content .custom__item {
width: 100%;
padding: 0px !important;;
}
}
Hi @Alliance
You can add code below
@media(max-width: 749px){
#shopify-section-f6304716-080c-4f6d-9b04-2a3a98904d66 > .page-width .custom-content {
display: flex;
flex-flow: column;
}
#shopify-section-f6304716-080c-4f6d-9b04-2a3a98904d66 > .page-width .custom-content .custom__item {
order: 2;
}
#shopify-section-f6304716-080c-4f6d-9b04-2a3a98904d66 > .page-width .custom-content .custom__item--image {
order: 1;
max-width: none;
}
}