• AZ WIKI

    (@voinichgmailcom)


    Hi,
    Thank you for your plugin!

    I would like my full sized images to be responsive and resize to the width of their container.
    I applyed this css formatting to make “size-full” class responsive 100% width.

    img.alignnone.size-full {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    How can I stop this plugin automatically add inline width and height dimension attribute to “size-full” images that I want responsive?

    Thank you!

    https://www.ads-software.com/plugins/ricg-responsive-images/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Jasper de Groot

    (@jaspermdegroot)

    Hi AZ WIKI,

    The width and height attributes are not added by this plugin. They are added by WordPress when you insert the image in the content. We use the values of those two attributes to get size info of the image and calculate the values for the srcset and sizes attributes.

    Adding srcset and sizes attributes to image elements is what responsive images is about. Those attributes make browsers load different image sizes depending on what size the image is actually being displayed and if it’s an HD screen or not.

    Your CSS will override the values of the width and height attributes. There is no need to remove them.

    Thread Starter AZ WIKI

    (@voinichgmailcom)

    Thanks, Jasper.
    It appears that resent WordPress update (4.4) included srcset attribute, so there is probably no need to duplicate the functionality, if I’m not mistaken.

    Plugin Contributor Jasper de Groot

    (@jaspermdegroot)

    That’s correct. We implemented the code from the plugin in WordPress 4.4. The plugin still offers two features that are not WordPress core.
    The plugin adds Picturefill to your site. It’s a small JavaScript file that makes srcset work on browsers that don’t (fully) support that attribute: https://caniuse.com/#search=srcset
    Besides that, the plugin offers advanced image compression. See https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images/tree/dev#advanced-image-compression.
    The plugin doesn’t load the new responsive images functions if you are using WordPress 4.4 and there won’t be any conflicts.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove image dimension attributes?’ is closed to new replies.