yes, i noticed that too. too bad is this.
display:none will somehow disable gears, so i assign a
position:relative top:-20px left:0px style after dom is ready to the
body.
$(document).ready(function () {
if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1){
$('#mybody').css("position", "relative").css("top", "-20px").css
("left", "0px");
}
...
hopefully the gears injection will change in future, imho a very bad
style to inject an object (or anything else) between head and body....
hth, frank
On 2 Jul., 19:26, Ryan <[email protected]> wrote:
> I noticed that in chrome the application/x-googlegears object is
> pushing the body down, giving the page about a 20px top margin. It
> appears to have a styles visibility hidden and width and height of
> zero, but I since it falls outside the body this doesn't take effect?
>
> Has anyone else noticed this? I'm looking for a clean solution.