i highly doubt your clip is called movie.mov
you gotta link it right just like you would an image.
and no offense, but your code sucks. hello and welcome to dreamweaver sucks too.
and your style sheet... i think you missed the whole concept of "Cascading" in Cascading Style Sheets
the sub menu of "houses" on the left is hideous, let alone hardly legible.
why use images for text? i never uderstood the concept.
your contact us form is highly misleading. non-savy folk won't even know theres a form there.
Code:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
dude, no one uses NN4 anymore. lol
less than .01%
fuck them. stop coding for them. upgrade.
your entire menu can be trucated
Code:
<table cellspacing="1" cellpadding="2" border="0" bgcolor="#354463" width="520">
<tr>
<td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="index.htm"><font color="#e9f2fc">Home</font></a></td>
<td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="about.htm"><font color="#e9f2fc">About
Us </font></a></td>
<td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="houses.htm"><font color="#e9f2fc">Houses</font></a></td>
<td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="contact.htm"><font color="#e9f2fc">Contact
Us </font></a></td>
</tr>
</table>
sucks.
lol
use something like
<td class="menu">
<a blah....>click</a>
<a blah....>click</a>
<a blah....>click</a>
</td>
and in your style sheet:
.menu { background: #354463; font: your fonts/szies/colors here}
a.menu { display: block; padding: 5px; }
a.menu:hover { background: #5F7797; }
3 lines of code y0.