Home › Forum › Customization › My WP Media Settings are ignored
Tagged: Media Settings ignored
This topic contains 5 replies, has 2 voices, and was last updated by StartupWP 5 years, 11 months ago.
- AuthorPosts
- April 27, 2013 at 12:44 AM #712
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.
April 27, 2013 at 8:46 AM #713Link please to example page/post. Also, a screenshot of the issue you’re seeing in IE8 if you can.
April 28, 2013 at 12:21 AM #719http://sfpontona.se/ah-va-roligt/
screenshot IE8:
http://i.imgur.com/IyGYiiW.jpgApril 28, 2013 at 9:06 AM #720Looks 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;
}April 28, 2013 at 11:10 AM #721Yes, that’s better! Thank you.
April 28, 2013 at 1:10 PM #722Wonderful. You’re welcome.
- AuthorPosts
You must be logged in to reply to this topic.