I have problem with hiding image for mobile devices. I'm using Semantic UI framework. In documentation I found some classes:
Just for example, I'm using "computer only" classes to hide image on tablets and mobile, but the result confused me.
<div class="ui grid stackable">
<div class="row middle aligned">
<div class="nine wide column">
<h1 class="ui header blue">Default Header.</h1>
</div>
<div class="seven wide computer only column">
<img class="ui image" src="http://icons.veryicon.com/png/System/iNiZe/niZe%20%20%20IMG.png" alt="" title="">
</div>
</div>
</div>
Also, I found one more solution. May be for someone it will helpful.
I've added classes "mobile hidden"
to column which I wanted to hide on mobile devices.
<div class="ui grid stackable">
<div class="row middle aligned">
<div class="nine wide column">
<h1 class="ui header blue">Default Header.</h1>
</div>
<div class="seven wide column mobile hidden">
<img class="ui image" src="http://icons.veryicon.com/png/System/iNiZe/niZe%20%20%20IMG.png" alt="" title="">
</div>
</div>