Full size photo

Topic summary

Goal: make the first homepage photo display at full size on a Shopify theme.

What was done (desktop):

  • Edit theme CSS (base.css/theme.css/styles.css/theme.scss.liquid) and add a desktop media query (min-width: 750px) to increase the Image Bar height. Two variants were suggested:
    • Set .image-bar–medium .image-bar__item to 2727px height.
    • Or add a block in theme.liquid setting .image-bar__content and .image-bar__item to 1800px height.

Issue raised: desktop looked correct, but mobile did not.

Mobile fix:

  • Add a mobile media query (max-width: 749px) to set .image-bar–medium .image-bar__content height (example used 500px) to control mobile display. A screenshot was provided to show the result.

Notes:

  • Solutions rely on CSS media queries (different rules for desktop vs. mobile) and target the Image Bar section classes.
  • Code snippets and screenshots are central to the solution.

Outcome/status:

  • After adding the mobile rule, the requester expressed thanks; the thread appears resolved with no further open questions.
Summarized with AI on December 26. AI used: gpt-5.

I would like to make the first photo of my homepage full size. If anyone could help I’d be very much appreciated!

www.tiffanynoyama.com

Thanks so much in advance.

Hi @Tiff2 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

@media only screen and (min-width: 750px) {
  .image-bar--medium .image-bar__item {
      height: 2727px !important;
  }
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Hello @Tiff2

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 on theme.liquid

@media only screen and (min-width: 750px) { .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item { height: 1800px !important; } }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

thank you so much!

thanks a lot!

Thanks for your help!

1 Like

@Tiff2 , No problem, Have a nice day :heart_eyes:

1 Like

@niraj_patel @BSSCommerce-HDL @pwcsangeeta

thanks so much for your help!

It’s very strange, the desktop version is showing full size, but not on my mobile. Any idea why?

Thanks again!

1 Like

Hi @Tiff2 , Pls insert this code to your file css:

@media only screen and (max-width: 749px) {
  .image-bar--medium .image-bar__content {
    height: 500px !important;
  }
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Thank you for your help!

1 Like

@Tiff2 , We are pleased to assist you :heart_eyes: