How can i get the appearance of the text with image of the first picture instead of the second picture.
Url is www.ateliercharisma.com
How can i get the appearance of the text with image of the first picture instead of the second picture.
Url is www.ateliercharisma.com
Hey @JarnoBroekkamp
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@JarnoBroekkamp - add thiss css to the very end of your theme.css file and check
@media screen and (min-width: 700px){
.image-with-text .prose{max-width: 60%; margin: 0 auto;}
}
I meant more that the picture doesn’t stick to the side of the page but there is a little bit of padding right there!
I meant more that the picture doesn’t stick to the side of the page but there is a little bit of padding right there!
Do you mean like this?
I make it same with lower section.
If this is what you mean check the code.
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:
@media only screen and (min-width: 750px){
image-with-text.image-with-text.image-with-text--reverse {
margin: 3rem;
}
}
@media only screen and (max-width: 749px){
image-with-text.image-with-text.image-with-text--reverse {
margin: 1.25rem;
}
}
And Save.