Multi column Dawn theme - Move image to left of content

Solved

Multi column Dawn theme - Move image to left of content

INFRA
Shopify Partner
238 2 84

Hi there,

 

Is it possible to move the image in the multicolumns to the left of the content as below? Currently it is sitting above it, which is fine for mobile, but for anything bigger, I would like to show it like below.

 

Screenshot 2024-10-11 at 19.18.50.png

Thanks so much!

 

website

passw: fbc

 

 

Accepted Solutions (2)

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

Hello @INFRA 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 990px){
   .multicolumn.background-none .multicolumn-card {
       display: flex;
       align-items: center;
   }
   .background-none .multicolumn-list .multicolumn-card__info{
        width: 70%;
   }
   .background-none .multicolumn-card__image-wrapper {
       width: 30%;
   }
}
</style>

Tech_Coding_0-1728637041523.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  .multicolumn.background-none .multicolumn-card {
      text-align: center !important;
  }
  .background-none .multicolumn-card-spacing {
     margin: 0 auto !important;
  }
}
</style>

Tech_Coding_0-1728641003687.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Replies 6 (6)

ZestardTech
Shopify Partner
6134 1097 1473

Hi @INFRA 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

 

.multicolumn-card__info {
padding-top: 0!important;
}
.multicolumn-card.content-container {
display: flex;
flex-wrap: nowrap;
}

 

ZestardTech_0-1728636152328.png

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

Dan-From-Ryviu
Shopify Partner
11608 2275 2456

Hi @INFRA 

Please add this code to Custom CSS of that Multiple column section 

@media (min-width: 749px) {
.multicolumn-card {
    display: flex;
    align-items: center;
}
}

Screenshot 2024-10-11 at 15.49.33.png 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

Hello @INFRA 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 990px){
   .multicolumn.background-none .multicolumn-card {
       display: flex;
       align-items: center;
   }
   .background-none .multicolumn-list .multicolumn-card__info{
        width: 70%;
   }
   .background-none .multicolumn-card__image-wrapper {
       width: 30%;
   }
}
</style>

Tech_Coding_0-1728637041523.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
INFRA
Shopify Partner
238 2 84

That worked! Thank you. (I adjusted to 80/20) Is it possible to have the content centered on mobile only?

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  .multicolumn.background-none .multicolumn-card {
      text-align: center !important;
  }
  .background-none .multicolumn-card-spacing {
     margin: 0 auto !important;
  }
}
</style>

Tech_Coding_0-1728641003687.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
INFRA
Shopify Partner
238 2 84

amazing, thanks so much!