Shopify themes, liquid, logos, and UX
I have numerous image with text overlay sections on my home page, and I would like to remove one of those from desktop only. Is this possible?
https://insideoutvintage.com/
Solved! Go to the solution
This is an accepted solution.
Hello @insideout_aus ,
Yes it's possible with media query css.
You have to pick the dynamic 'id' of specific section and make it hidden with media query css.
e.g.
If I have to hide first section having button 'Shop NFL'
the my css will be
@media only screen and (min-width: 750px){
#shopify-section-1602743197801 {
display: none;
}
}
Here 'shopify-section-1602743197801' is a dynamic 'id' if you want to hide another section from desktop then just pick it 'id' and use it in above css.
And you have to paste this css in theme.scss.liquid under 'Assets' at them bottom without breaking existing css code.
Thanks
This is an accepted solution.
Hello @insideout_aus ,
Yes it's possible with media query css.
You have to pick the dynamic 'id' of specific section and make it hidden with media query css.
e.g.
If I have to hide first section having button 'Shop NFL'
the my css will be
@media only screen and (min-width: 750px){
#shopify-section-1602743197801 {
display: none;
}
}
Here 'shopify-section-1602743197801' is a dynamic 'id' if you want to hide another section from desktop then just pick it 'id' and use it in above css.
And you have to paste this css in theme.scss.liquid under 'Assets' at them bottom without breaking existing css code.
Thanks
Thank you this worked perfectlty.
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