Code: Select all
<div class='home-column mobile'>
<div class='home-column-inner'>
<div class='home-column-image'><img src='/images/head-contact.jpg' alt='contact '/></div></div>
</div>But on mobile, I want it to disappear.
I thought if I added the " mobile", and then in the CSS for mobile widths, I added:
Code: Select all
<style>
.home-column mobile
{
display: none;
}
</style>