• The images in one of my blog posts are not responsive. It does not resize for mobile displays and does not look good. How do I make it responsive?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Could you give us a source or a link to a website?

    You may try to do this. Just paste this code and specify images you want to look good. In mobile resolution all images are 100% width usually.

    @media only screen
    and (min-device-width : 320px)
    and (max-device-width : 480px) {
       img {
             width:100%;
       }
    }

    Ref: Css Tricks

    Thread Starter Functional Post

    (@functionalpost)

    my site is gone – with all of its contents – thanks to a plugin. I will try it anyway after I rebuild my site.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Images not responsive’ is closed to new replies.