Reduce Size of 3 Image Sections

Solved

Reduce Size of 3 Image Sections

Explore-Sherpa
Excursionist
37 0 12

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

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10036 2386 3012

This is an accepted solution.

Hi @Explore-Sherpa 

Do you mean like this?

Made4uoRibe_0-1722527448799.png

Made4uoRibe_1-1722527462776.png

If it is, 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 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;
}
}

 

  • And Save. 
  • Note: I only reduce on dektop.

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

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.

View solution in original post

Replies 2 (2)

niraj_patel
Shopify Partner
2391 516 515

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.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

Made4uo-Ribe
Shopify Partner
10036 2386 3012

This is an accepted solution.

Hi @Explore-Sherpa 

Do you mean like this?

Made4uoRibe_0-1722527448799.png

Made4uoRibe_1-1722527462776.png

If it is, 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 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;
}
}

 

  • And Save. 
  • Note: I only reduce on dektop.

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

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.