Move button postion

Topic summary

A user seeks help repositioning buttons to appear on top of images instead of below them in their Shopify store.

Two CSS solutions were provided:

  1. BSSCommerce-B2B’s approach:

    • Navigate to Admin → Online store → Theme → Edit code
    • Locate the base.css file
    • Add CSS targeting .slick-list .multicolumn-card.content-container with display: grid!important and .multicolumn-card .image-wrapper with order: 2!important
  2. Dan-From-Ryviu’s alternative:

    • Add custom CSS directly to the multiple column section
    • Use .multicolumn-card with display: flex and flex-direction: column-reverse

Both solutions include screenshots demonstrating the expected results. The discussion remains open with no indication of which solution the original poster implemented.

Summarized with AI on November 7. AI used: claude-sonnet-4-5-20250929.

Hey guys,

Was hoping someone could help with button postion i would like to have the buttons placed ontop of the images not the bottom.

Url- www.phreshcareco.com.au

Hi @Phreshcareco

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file base.css

Step 3. Add this code to the end of file

.slick-list .multicolumn-card.content-container {
  display: grid!important;
}
.slick-list .multicolumn-card.content-container .multicolumn-card__image-wrapper {
  order: 2!important;
}

Result:

If it helps you, please like and mark it as the solution.

Best Regards

1 Like

Hi @Phreshcareco

You can do that by adding this code to Custom CSS of that multiple column section

.multicolumn-card {
    display: flex;
    flex-direction: column-reverse;
}

1 Like