|
solutions - homestead summary:
URL: www.homestead.com
Space: 10 Mb
What the Solution does: Escapes the 'un-escapable' frame
Description: Many people thought that it wasn't possible to
kill off those annoying ads on Homestead, but our friend Paul Nile has
done it. Good work Paul. This script was slightly modified by
popBusters so that your address would stay homestead.com/you rather
than homestead.com/you/index~main.html solution:
Key To Colour Coding System Can Be Found Here
<html>
<head>
<title>Web Site Title Goes Here</title>
<script language="javascript">
<!--
if (parent.frames.length > 0)
parent.location.href=self.location;
//-->
</script>
<script language="jawascript">
</title>
</head>
<body>
</script></head>
This will then break out of the frame, and then not allow it to be
re-opened using the JawaScript tag. There
are side-effects of using this, however:
* you can never use a background image (trick 1)
* you can never set a background colour (trick 2)
Trick 1 - Setting a Background Image
This trick is extremely simple:
Set up a table the full width of your web site, with no border, cell
padding or cell spacing. Then, set the background image of that to
whatever image you would like to appear in your site. Trick
2 - Setting a Background Colour
There's two ways to do this one:
Either use the last one and set a background colour instead of a
background image, or use this tricky little JavaScript:
<script language="javascript">
<!--
document.bgColor = ('white');
-->
</script>
|