Re: Hide sections from mobile end-Dawn theme

Solved

How can I hide specific image banners on mobile or desktop views?

NataliaWu
Tourist
6 0 3

Hi there,

 

I am currently working on a page of my website ( i use dawn theme). I created two images of a same chart for desktop and mobile because the desktop image is too wide for mobile. Then I added both images as image banner sections on the page. Now I want to hide the desktop image banner from the mobile end, and hide the mobile banner from the desktop end. What should I do?

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
9562 1923 1959

This is an accepted solution.

Add this code Custom CSS of Image banner section that you want to hide on mobile

@media (max-width: 768px) {
  .banner {
    display: none;
  }
}

And this to section you want to hide on desktop

@media (min-width: 767px) {
  .banner {
    display: none;
  }
}

Screenshot 2024-01-11 at 13.59.19.png

 

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 21 (21)

Abdosamer
Shopify Partner
895 163 183

Hi @NataliaWu , can you share screenshots of what you want to achieve exactly?

NataliaWu
Tourist
6 0 3

Hi @Abdosamer,

Thanks for the reply. It is like the screenshot below. These two charts are designed for desktop and mobile separately, but it is actually the chart with same info. So I want to hide the desktop chart from the mobile end. And hide the mobile chart from desktop end.

IMG_3756.PNG 

Abdosamer
Shopify Partner
895 163 183

@NataliaWu , Can you please share your store url ?

Abdosamer
Shopify Partner
895 163 183

@NataliaWu , one great solution for you would be to wrap the two images inside the html <picture> tag, and use the media attribute to control when you want the images to appear based on screen size, for example:

<picture>
  <source srcset="mdn-logo-wide.png" media="(min-width: 600px)" />
  <img src="mdn-logo-narrow.png" alt="MDN" />
</picture>

 The first image will only appear on a screens larger that 600px , the other will appear on screens lesser than 600px.

NataliaWu
Tourist
6 0 3

@Abdosamer, I am afraid I cannot share the store url with you. Sorry for that. 

Thanks for helping me. For the solution you provide, do i add the code directly in the CSS custom of the section?

NataliaWu
Tourist
6 0 3

@Abdosamer And can you please elaborate more on wrapping two images inside the html <picture> tag? I am beginner level so... Thanks

Abdosamer
Shopify Partner
895 163 183

@NataliaWu , you have two images, each has its own url: 

<picture>
  <source srcset="url here" media="(min-width: 600px)" />
  <img src="url here" alt="MDN" />
</picture>

put the urls inside the picture element , the first one will appear only if the screen is larger than 600px, I hope this was clear. 

Moeed
Shopify Partner
5426 1468 1753

Hey @NataliaWu 

 

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


Dan-From-Ryviu
Shopify Partner
9562 1923 1959

This is an accepted solution.

Add this code Custom CSS of Image banner section that you want to hide on mobile

@media (max-width: 768px) {
  .banner {
    display: none;
  }
}

And this to section you want to hide on desktop

@media (min-width: 767px) {
  .banner {
    display: none;
  }
}

Screenshot 2024-01-11 at 13.59.19.png

 

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

NataliaWu
Tourist
6 0 3

OMG this works and it is really straightforward for a beginner like me. Thank you so much! @Dan-From-Ryviu 

MattB07
Shopify Partner
3 0 1

The best, simplest answer. Thank you

Dan-From-Ryviu
Shopify Partner
9562 1923 1959

Happy I could help😘

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

avaskye
Excursionist
36 0 7

Hi, this code is super, super helpful, but for some reason, the image completely disappears on iPad Air! Would you happen to know why this is happening? Thank you so much in advance! 

Dan-From-Ryviu
Shopify Partner
9562 1923 1959

Hi @avaskye Sorry for missing your message. Please update code following this: 

 

Add this code Custom CSS of Image banner section that you want to hide on mobile

 

 

@media (max-width: 767px) {
  .banner {
    display: none;
  }
}

 

And this to section you want to hide on desktop

 

 

@media (min-width: 768px) {
  .banner {
    display: none;
  }
}

 

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

BellandPedre
Visitor
1 0 0

Hello. I tried this on a Slider Section but the pagenation still appears.

Moeed
Shopify Partner
5426 1468 1753

Hey @BellandPedre 

 

Share your Store URL and Password if enabled.

 

Best Regards,

Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


Dan-From-Ryviu
Shopify Partner
9562 1923 1959

Hi @BellandPedre , if you add slideshows, please use this code

For desktop slide

@media (max-width: 767px) {
  .slideshow {
    display: none;
  }
}

For mobile slideshow 

@media (min-width: 768px) {
  .slideshow {
    display: none;
  }
}

 

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Auoehrper
Tourist
11 0 1

Hi, I can hide the slideshow using this code but not the bottom slider, what should I do.

Auoehrper_0-1723701724112.png

 

Dan-From-Ryviu
Shopify Partner
9562 1923 1959

Please update the code 

Desktop: 

@media (max-width: 767px) {
  slideshow-component {
    display: none;
  }
}

Mobile

@media (min-width: 768px) {
  slideshow-component {
    display: none;
  }
}

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

SebPotet
Tourist
9 0 2

Hi Dan,

Your solution is nice and easy although I have a question : when I run a speedtest through Lighthouse, it seems that the image that is not displayed (basically the desktop version when on mobile and vice versa) is still loading behind => is there a way to enable lazy loading ?

Thanks for your help !

Dan-From-Ryviu
Shopify Partner
9562 1923 1959

It could be solved for mobile or desktop only, could not be solved both devices by open your image banner or slideshow liquid file, find this line of code. 

loading="lazy"

Change to this 

{% if forloop.first == false %}
loading="lazy"
{%- endif -%}

 

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.