How can i adjust the main image size

Solved

How can i adjust the main image size

VinUp
Excursionist
50 0 13

Hi,

 

How can I increase the main image size? 

 

My website is https://vinup.nl/en/products/springsteel and i am using the Origin theme

 

VinUp_0-1720631081962.png

 

Accepted Solution (1)

Vortifytech
Shopify Partner
54 9 10

This is an accepted solution.

First of all go to the Customize theme:

Vortifytech_0-1720641904362.png


Open product from customizer and go to product:

Vortifytech_1-1720641975182.png

Open Default Product template and explore the settings:

Vortifytech_2-1720642066770.png

Set width of media from there, If you do not find these settings then Add the code i given below and you design will be same as you want. 

 
If not solved by above scenario then use the code process. 
Go to the CSS Code file > section-main-product.css
go to the bottom and add this code :

@media screen and (min-width : 990px){

.grid__item.product__media-wrapper{
max-width: 50% !important; 

width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2) !important;

}

.product__info-wrapper.grid__item{
max-width: 50% !important;
width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2) !important;
}

}



Then it will looks like:

Vortifytech_3-1720642281997.png

If not resolved the issue message on given below

Do you need Shopify experts?Get in touch on WhatsApp
Expertise in (Theme Development | Customization | Modifications | Bug Fixing and much more )
Blending Your Coffee advice with My Code, a Perfect Mix!
Transforming Your Shopify Aspirations into Reality – Join the Conversation and Craft Together Visit our site

View solution in original post

Replies 3 (3)

BSSCommerce-TC
Shopify Partner
225 49 51

Hi @VinUp ,

 

Can you follow these steps:

Step 1: Go to Online store > Themes > Customize

Step 2: Search product pageDesktop media width

BSSCommerceTC_0-1720634093353.png

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution.


MIDA: Heatmap, Record & Replay |BLOOP Referral Program, Reward |

Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

Made4uo-Ribe
Shopify Partner
10100 2398 3034

Hi @VinUp 

check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media screen and (min-width: 990px) {
    .product--medium:not(.product--no-media) .product__info-wrapper, .product--small:not(.product--no-media) .product__media-wrapper {
        max-width: 50%;
    }
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720633940057.png

     

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

Vortifytech
Shopify Partner
54 9 10

This is an accepted solution.

First of all go to the Customize theme:

Vortifytech_0-1720641904362.png


Open product from customizer and go to product:

Vortifytech_1-1720641975182.png

Open Default Product template and explore the settings:

Vortifytech_2-1720642066770.png

Set width of media from there, If you do not find these settings then Add the code i given below and you design will be same as you want. 

 
If not solved by above scenario then use the code process. 
Go to the CSS Code file > section-main-product.css
go to the bottom and add this code :

@media screen and (min-width : 990px){

.grid__item.product__media-wrapper{
max-width: 50% !important; 

width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2) !important;

}

.product__info-wrapper.grid__item{
max-width: 50% !important;
width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2) !important;
}

}



Then it will looks like:

Vortifytech_3-1720642281997.png

If not resolved the issue message on given below

Do you need Shopify experts?Get in touch on WhatsApp
Expertise in (Theme Development | Customization | Modifications | Bug Fixing and much more )
Blending Your Coffee advice with My Code, a Perfect Mix!
Transforming Your Shopify Aspirations into Reality – Join the Conversation and Craft Together Visit our site