its javascript not just java. the two languages are completely different.
Your explanation was a little bit confusing, but looking at your page and reading your explanation, do you want that image slideshow and the links side by side? why suggestion is to get rid of that entire background image you have and take a slice of that gradient and assign that. something along the affect of.
HTML Code:
<body>
<ul id="splash">
<li><script type="text/javascript">new fadeshow(fadeimages, 141, 250, 0, 3000, 1);</script></li>
<li><a href="http://thehouseofneftali.com/menu.html" title=""><img src="templates/images/splash2.png" height="490" width="850" alt="" title="" /></li>
</ul>
<div style="font-size:80%;">
<p>Neftali® is a registered trademark of The House of Neftali,</p>
<p>in the U.S. and other countries. © 2007-2008 All Rights Reserved.</p>
</div>
</body>
Code:
body {
margin: 0 auto;
width: 100%;
text-align: center;
padding: 0;
background-color:#000000;
color:#736f6e;
font-size: normal;
}
ul#splash {
margin: .5em 0 .5em;
padding: 0;
}
ul#splash li {
list-style-type:none;
display:inline;
margin-left: 3em;
padding: 1em;
background: #000000 url('/path/to/gradient.gif') repeat-x;
}
Bookmarks