Good day folks
Whenever i insert a picture in one of my posts, the width of the attachement container is set to 695px - this results in a distorted display of the image.
With Firefox and Firebug, i can see an
element.style {
width:695px;
}
i've searched for the string 695 and element.style. There's a menu.js which does:
setStyle = function(element, key, value) {
element.style[key] = value-35; <= tested here
}
getStyle = function(element, key) {
return element.style[key];
}
but it seems that changes to this file does not change the element.style width property...
here's the affected page: http://www.christiano.ch/wordpress/2009/10/05/connexin-remote-desktops-v2-released/
where can the - in my case - 695px width be changed?
helps appreciated!
Thanks,
Christian