|
solutions - dream
water summary:
URL: www.dreamwater.com
Space: 20 Mb
What the Solution does: Gets rid of their hard-to-kill advert
Description: Dream Water's ads are kind of like the ones on
FreeServers.com, as both are rather hard to kill. If you try the
usual
<!-- <body> --> trick, then you will get two ads. So, this
seems to be the only way to kill the ads at the moment. solution:
This solution works by sandwiching
your <body> tag between a set of <title> tags so that the
browser can't show the banner code.
Key
To Colour Coding System Can Be Found Here
<html>
<head>
<title>Your Page Title Goes Here</title>
<title><body></title>
</head>
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 = ('teal');
-->
</script> Just
substitute teal with the colour of your choice from the
ZSPC
Super Color Chart
|