Okay, I've uploaded my blank.html page where i do all my testing before i place codes in to full effect to cover the rest of my website. As you can see there is a white background but thats because i offset it to 'white' to ensure the water mark code is working correctly. i plan to change it to black again so the watermark blends in easily.
I found the code you suggested jscheuer1
Code:
<div style="background: transparent none;">Whatever</div>
To work so i left it to show that it does on the blank (testing) page. However instead of just having to go through.. roughly 20 different web pages to place in to re-adjusting of the codes on each page. is there a way to do it from the Style sheet?
Reason trying to change all DIV tags to 100% Transparent also is so i can use this code here... Watermark Background Image Script
HTML Code:
<script language="JavaScript1.2">
/*
Watermark Backgound Image Script- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS,
visit dynamicdrive.com
*/
if (document.all||document.getElementById)
document.body.style.background="url('notebook.jpg') white center no-repeat fixed"
</script>
So once i'm able to get the DIV tags to transparent, i'll change this section of coding From
HTML Code:
document.body.style.background="url('notebook.jpg') white center no-repeat fixed"
To
HTML Code:
document.body.style.background="url('notebook.jpg') black center no-repeat fixed"
So i can have the water mark blend in with the black background but have the watermark show through the body DIV tags.
Aside from the link to the page, here is the codeing i'm working with.
Code:
<head>
<title>UTSW Ultima The Secret Weapon</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<script language="JavaScript1.2">
/*
Watermark Backgound Image Script- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS,
visit dynamicdrive.com
*/
if (document.all||document.getElementById)
document.body.style.background="url('watermark.jpg') white center no-repeat fixed"
</script>
<div id="pagewrapper">
<div id="page">
<div id="header">
<span class="bcol"><img src="utswnetwork.jpg"></span>
<h2>Ultima The Secret Weapon</h2>
</div>
<div id="topnav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="http://secretweapon.x.am" _"new">Forums</a></li>
<li><a href="http://mataniah.blogspot.com/" _"new">Mataniah Blog</a></li> <li><a href="map.html">Site Map</a></li>
</ul>
</div>
<div id="main">
<div id="body">
<h2>About Us</h2>
<p>
<CENTER>
</CENTER>
<p>
<h2><a href="map.html" _"new">Site Map</h2>
<p></p>
</div>
<div id="left">
<h2><a href="http://secretweapon.17.forumer.com/viewforum.php?f=6" _"new">News</a></h2>
<p>
<h2>Sugested Links</h2>
<div class="nav">
<ul>
<li><a href="http://wiki.ffxiclopedia.org/wiki/Main_Page">FFXIclopedia</a></li>
<li><a href="http://www.ffxiah.com">FFXI AH Online</a></li>
<li><a href="http://www.ffxi-atlas.com/">FFXI Atlas</a></li>
<li><a href="http://www.playonline.com">PlayOnline.com</a></li>
</ul>
</div>
<h2>Navigation</h2>
<div class="nav">
<ul>
<li><a href="http://secretweapon.17.forumer.com/viewforum.php?f=8">F.A.Q (redirect)</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="psi.html">Point System Info</a></li>
</ul>
</div>
</p>
</div><!-- END OF LEFT BAR -->
</div><!-- END OF MAIN DIV TAG -->
<div id="footer">Designed by <a href="http://mataniah.blogspot.com/">Mataniah</a></div>
</div>
</div>
<div style="background: transparent none;">Whatever</div>
</body>
</html>
( I hope i explained it right >< )
Bookmarks