• Plugin works great, but I would like to know if it is possible to NOT have the height and width of the pictures automatically inserted into the HTML.

    This because it runs on my responsive website and whenever the height and width of images are set, the pictures look distorted whenever not viewed on big screens.

    Normally, with responsive themes, I leave the whole height and width out, which works great, but perhaps there are better options that I am not aware of.

    If you don’t have a solution, can you then please tell me where I can manually delete the height and width?

    Thanks.

    https://wordpress.org/plugins/qqworld-auto-save-images/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Michael Wang

    (@qqworld)

    No need program, css can solve this issue, you can put this codes below into style.css:

    img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    }

    Oh, i recommend add the content area ID/Class before ‘img’, e.g.

    #content img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    }

    Thread Starter tfbpa

    (@tfbpa)

    Excellent, works like a charm!

    Thanks very much for your fast response.

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

The topic ‘Image height/width with responsive theme’ is closed to new replies.