I’ve 2 floating columns, one with text (floats left) and one with an image(floats right). When viewed on mobile devices, I want the image to disappear and the text to expand across both columns. I made the image disappear with
@media screen and (max-width: 600px)
{#right { display:none; }}
But I can’t figure out how to expand the text across both columns.
Any ideas are welcome.