Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi everyone,
I have finished my website but one thing still remains an issue.
The image on my home page (image on top of the page that acts as banner), doesn't scale well for mobile or tablet use. The result was that I removed the image completely on mobile view. But the issue of scaling remains when my website is viewed on tablet or small computer.
What can I do about this?
Website link: https://matubucoffee.be/
Thank you in advance!
@Felix_Ghys , We can try to only show the image on large screens using this code in theme.liquid before the </body> tag :
<style>
@media(max-width:1420px){
div#shopify-section-template--19897395708229__694cf2ae-142b-4bd4-8155-40f7816be418 {
display: none !important;
}
}
</style>