Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Images not working Reply To: Images not working

#240590
I.m.learning
Participant

I found this CSS code somewhere:

/* Large desktop */
@media (min-width: 1200px) { … }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { … }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) { … }

/* Landscape phones and down */
@media (max-width: 480px) { … }

Do I need this in my sheet? Or is this the cause of my issue?