New Topic

My WP Media Settings are ignored

Home › Forum › Customization › My WP Media Settings are ignored

This topic contains 5 replies, has 2 voices, and was last updated by  StartupWP 5 years, 11 months ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #712

    trotsig
    Participant

    I have used the WordPress Settings–>Media Settings in the dashboard to customize my (image) media sizes to:  Medium size:  Max Width: 600  Max Height:600  and Large size: Max Width:1024 Max Height:1024

    (Thumbnail size unchanged:  default 150)

    I have a problem with IE8 distorting the images very badly,  unless image size is specified in ever individual post. (images can often be 4000px  *  3000px)  so I edited the child style.css :

    /*  force content images to be contained inside their containers  */
    #content p img {
    max-height: 1024px;
    max-width: 1024px;
    }

    and tried adjusting the WP Media settings as above to try and handle the problem through the Large size setting.   Something prevents the settings being implemented.

    #713

    StartupWP
    Keymaster

    Link please to example page/post. Also, a screenshot of the issue you’re seeing in IE8 if you can.

    #719

    trotsig
    Participant
    #720

    StartupWP
    Keymaster

    Looks like this is a known bug with IE8.

    Try removing:

    #content p img {
    max-height: 1024px;
    max-width: 1024px;
    }

    and adding:

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

    #721

    trotsig
    Participant

    Yes, that’s better! Thank you.

    #722

    StartupWP
    Keymaster

    Wonderful. You’re welcome.

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.