Aloha,
currently my pligg template have following Iframe code :
<iframe height="0px;" width="0px;" frameborder="0" name="story_status"></iframe>
Its working fine on firefox, however on chrome, it display as white box..
after inspecting,
<iframe height="0px;" width="0px;" frameborder="0" name="story_status">
<html><head></head><body></body></html>
</iframe>
body have margin: 8px;
EDIT : [ view this on chrome & firefox, u can notice white box on chrome ]
<html>
<head><style>html, body {
margin: 0;
}
</style>
</head>
<body style="background : #000; color: #fff;">
aaaaa<iframe height="0px;" width="0px;" frameborder="0" name="story_status"></iframe>bbbbb
aaaaaaaaa
</body>
</html>
Is there anyway to remove margin 8px as it display as white box on chrome?
thank you for help