Stefan Lazic
Stefan Lazic

Reputation: 41

Hide part of website on mobile device

Im using section tags on my website.

This is the website - http://mk18.web44.net/

How would I hide the section that is called Place an Order on mobile devices?

Thanks

Upvotes: 0

Views: 1962

Answers (1)

Moonboy
Moonboy

Reputation: 219

Add this to your css:

@media screen and (min-width: 0px) and (max-width: 400px) {
    #order{
        display:none;
    }
}

Upvotes: 1

Related Questions