absolute positioning conflicts with banner ad of webhost

S

Sandy W

How do I resolve absolute positioning conflicts with the banner ad of my
webhosting service? I need to create 1.5 inches of blank space above my
webpages. They tell me not to use absolute positioning. Is there a way to
turn it off? Other solutions?
 
D

DavidF

It sounds like your host is framing your site, which is not supported in
Publisher.

Many months ago, another poster had this problem and his host provided some
script to "fix" the problem. You might try copying and inserting this into
your Pub page via the insert html code function to see if it helps:


<TITLE>Can't be in a frame</TITLE>
<SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT">
<!-- Hide script from old browsers

if (top.location != self.location) {
top.location = self.location
}
// End hiding script from old browsers -->
</SCRIPT>


DavidF
 
Top