
Originally Posted by
ikon
but its still showing up white, unlike the subpages where it worked in every other instance..im thinking i might have to alter the code in the external.htm file itself
Yes, you do. Without a correct DOCTYPE, user agents will fallback to quirky behaviour. In this mode, IE defaults to a white background not a transparent one. Either set a DOCTYPE at the very start of the document:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- ... -->
or explicity set the background-color CSS property to transparent:
HTML Code:
<head>
<style type="text/css">
html,
body {
background-color: transparent;
}
</style>
<!-- ... -->
</head>
Either way, you still need the proprietary allowtransparency attribute.
Mike
Bookmarks