You have a bit of code in your theme that’s causing that. I don’t know where it comes from, but if you look at your page’s source:
<style type="text/css">
a { font-weight: bold; }
.entry img, .entry embed, .entry object { max-width: 406px; width: expression(this.clientWidth > 406 ? 406: true); height: auto; }</style>
That height:auto; is what’s doing it.
Ah, well I did “upgrade” my sites theme at the same time…odd….thanks!
Actually shouldn’t “auto” then take the aspect ratio of the embedded code, and the width 406 is to make sure it doesn’t widen the site?
I never have the first clue what “auto” does when it comes to that sort of thing. All I know is that when I remove the height:auto from your CSS, it works fine in my browser.
Thanks Otto42
Turns out it was the template I was using, contacted the creators and they sent me the correct code.
Thanks for the help