Shopify themes, liquid, logos, and UX
I am currently trying to reduce the size of three sections on our "Our Process" page, "Trimming and Processing", "Lab Tested Twice", and "Delivering Quality". I want them to not take up the entire screen and be reduced by 50% or more. Any advice or custom CSS would be greatly appreciated.
I am using an influence theme.
Link: https://www.exploresherpa.com/pages/our-process
Solved! Go to the solution
This is an accepted solution.
Do you mean like this?
If it is, check this one.
@media only screen and (min-width: 989px){
div#shopify-section-template--22776680120599__image-with-text {
max-width: 60%;
margin: auto;
}
div#shopify-section-template--22776680120599__flotilla_text_columns_with_images_azcAdt {
max-width: 50%;
margin: auto;
}
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hello @Explore-Sherpa
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) {
#shopify-section-template--22776680120599__image-with-text-overlay.w-full {
width: 50% !important; /*adjust according to you*/
margin: 0 auto !important;
}
div#shopify-section-template--22776680120599__image-with-text {
width: 50% !important; /*adjust according to you*/
margin: 0 auto !important;
}
div#shopify-section-template--22776680120599__flotilla_text_columns_with_images_azcAdt{
width: 50% !important; /*adjust according to you*/
margin: 0 auto !important;
}
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Do you mean like this?
If it is, check this one.
@media only screen and (min-width: 989px){
div#shopify-section-template--22776680120599__image-with-text {
max-width: 60%;
margin: auto;
}
div#shopify-section-template--22776680120599__flotilla_text_columns_with_images_azcAdt {
max-width: 50%;
margin: auto;
}
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025