How can I hide a collection banner on desktop view?

How can I hide a collection banner on desktop view?

bthorne1
Excursionist
42 0 8

Hi, I would like to hide the collection banner from the desktop view as it is too large and cannot be cropped down. I would still like for it to be shown on the mobile version of the site. I found this code and tried to edit it to be used for the collection banner but didn't have any luck. Any advice would be appreciated. Thanks

Screen Shot 2022-11-12 at 9.03.04 PM.jpg

Screen Shot 2022-11-12 at 9.02.56 PM.png

 

div#shopify-section-1591368324386 {
    display: none;
}
@media only screen and (max-width: 749px) {
div#shopify-section-1591368324386 {
    display: block;
}
div#shopify-section-slideshow {
    display: none;
}
}

 

Replies 5 (5)

KetanKumar
Shopify Partner
37598 3668 12156

@bthorne1 

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community!😊
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

 

If helpful then please Like and Accept Solution. Partnership of your ️ Coffee Tips and my code can bring miracles.
Want to modify or custom changes on store Hire Me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
bthorne1
Excursionist
42 0 8

@KetanKumar  Thanks for the reply. Here is the url https://brandonthorne.com/

ExpertRookie
Shopify Partner
1518 249 325

Hi @bthorne1 
You can try to replace with this code

#shopify-section-template--16771936682198__banner{
display: none;
}
@media(max-width: 749px){
#shopify-section-template--16771936682198__banner{
display: block!important;
}
}
- Was my reply helpful? Please Like and Accept Solution to let me know!
- Want to modify or custom changes on store Hire me.
- Feel free to contact me on expert.rookie.team@gmail.com regarding any help.
bthorne1
Excursionist
42 0 8

@ExpertRookie  Thank you, do you know the correct section this would be placed?

ExpertRookie
Shopify Partner
1518 249 325

Hi @bthorne1 
You can try to add the code into the bottom of the file theme.min.css

 

- Was my reply helpful? Please Like and Accept Solution to let me know!
- Want to modify or custom changes on store Hire me.
- Feel free to contact me on expert.rookie.team@gmail.com regarding any help.