Shane_h
February 14, 2025, 5:54pm
1
Hi We are trying to figure out with no joy how to move the heading text and button within the multicolumn towards the top and wondered if anyone can offer solutions please
would prefer only to change this multicolumn
we are using charge theme
thanks
1 Like
Hi @Shane_h , can you share your store url?
Shane_h
February 14, 2025, 6:15pm
3
1 Like
@Shane_h , go to styles.css and add the following code :
#shopify-section-template--23104031064393__multicolumn_McYx86 .multicolumn-card__image-contain {
flex-direction: column-reverse;
align-items: self-start !important;
}
Result:
Shane_h
February 14, 2025, 6:23pm
5
Thankyou how do i bring it down a bit ?
@Shane_h , Add the following code :
#shopify-section-template--23104031064393__multicolumn_McYx86 .multicolumn-card__image-contain .multicolumn-card__content {
margin-top: 2rem !important;
}
Shane_h
February 14, 2025, 8:08pm
7
Maybe im missing something - couldnt get it to work ? thankyou
1 Like
@Shane_h , Add this code to the custom css for that section:
#shopify-section-template--23104031064393__multicolumn_McYx86 .multicolumn-card__image-contain {
flex-direction: column-reverse;
align-items: self-start !important;
}
#shopify-section-template--23104031064393__multicolumn_McYx86 .multicolumn-card__image-contain .multicolumn-card__content {
margin-top: 2rem !important;
}