Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Here are the differences between the original style.css file (on the left) and your style.css file: https://www.diffchecker.com/b6ofli5c
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
But still, it seems there is CSS there that forces the image to be about 700 pixels wide regardless of how wide it is. Causing your massive issue.
Oh yeah, I changed the font color. But that’s it. I figured out the problem. Again. I always post a question, and then resolve it myself about 2.5 seconds after I post.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
Alternatively use your Child Theme style.css file to hold your CSS modifications:
.blog_post_content img.alignnone,
.blog_post_content div.alignnone img {
max-width: 100%;
height: auto;
width: auto;
}