Having a little trouble with WordPress and CSS. My goal is to make my images span the full width of my posts (800px), but currently they're restricted to 620px. When I check Inspect Element, here's the CSS code that shows up:
img[Attributes Style] {
width: 640px;
height: 427px;
}
This code appears as grayed out in Inspect Element and I can't seem to modify it. What exactly is this [Attributes Style]? In the CSS Editor within WordPress, I've tried including code for img max-width: 800px, but it doesn't produce the desired effect. I also experimented with img width: 800px, only to find that all images then become 800px wide.
If anyone could lend a hand, I'd really appreciate it! Thanks so much! :)