Hey, I would like to make my page like this website, the big picture on one half and text on other side
Hi @robert_swag
This person is using the Dawn theme, and I noticed that the Dawn theme already has a built-in two-part layout, just like what they want—one side for the image and the other for the information.
Best,
Daisy
You are right, but as you can see they have it split right in the middle and I don’t know how to do that, also I would like to make the image big like theirs and have it going all the way to the sides
Hi @robert_swag
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
@media screen and (min-width: 1024px){
product-info .page-width > .product > .grid__item.product__media-wrapper {
width: 80% !important;
max-width: unset !important;
}
product-info .page-width > .product > .product__info-wrapper.grid__item {
width: 20% !important;
}
}
Here is the result:
This code is only applied to the desktop version.
It has two parts: currently, the image takes up 80%, and the information takes up 20%. You can adjust these percentages to your desired ratio by modifying the code.
I hope this helps
Best,
Daisy
Hi @robert_swag
Please add this code in the same position
product-info > .page-width {
max-width: unset !important;
}
Result:
The image currently has a smaller width than its height.
So, if it’s displayed at full width, it will be cropped at the edges. If it’s not, the image will be resized and appear smaller.
I hope this helps
Best,
Daisy
Thank you very much I edited some things and now it looks exactly how I wanted to





