Hi,
As Ray said iframe stands for "inline-frame" and behaves much as an image would in that it sits inline with other inline content.
I'm not sure where this iframe is sitting because it seems to be appended to the body by this routine.:
Code:
var d = document.createElement('div');
d.style.height = 0;
var tgt = 'jsk-ifrmsess-' + Math.random();
d.innerHTML = '<iframe id="' + tgt + '" name="' + tgt + '" src="about:blank" width=0 height=0 style="border: none"></iframe>';
var f = function() {
document.body.appendChild(d);
It has a random ID which is why you can't target it and it seems to be append to the body but not within #wrapper.
You should be able to target it by exclusion.
e.g.
Code:
iframe{display:block}
#wrapper iframe {display:inline}
Bookmarks