How to align headings with image in multicolumn?

Hello,

I’m trying to get the title and the heading for my collections to line up with my image. Does anyone know how? I’ve gotten it as close as I can with the multicolumn feature but am not great with code. Pic attached for reference. Thank you :slightly_smiling_face:

1 Like

Hi @Joioffutt

Would you mind to share your Store URL website? with password if its protected. Thanks!

Hi, my url is https://f9e83e.myshopify.com/

oh , and “deirer” to get in

1 Like

Thank you for the information.

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--full-width.multicolumn-card-spacing {
    margin-left: 0px;
}
@media only screen and (min-width: 989px){
.multicolumn-card__info {
    margin-top: -25px;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

It worked perfectly, Thank you SO much!

1 Like