okay - here it is:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Portfolio Index</title>
<style type="text/css">
<!--
body,td,th {
font-size: 12pt;
color: #000000;
}
body {
background-color: #0099FF;
}
a {
font-family: Papyrus;
font-size: 12pt;
color: #FF0000;
}
a:link {
text-decoration: underline;
}
a:visited {
text-decoration: underline;
color: #9900FF;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: underline;
}
.style1 {font-size: 18pt}
-->
</style>
</head>
<body>
<div align="center" class="style1"><p>Welcome!</p></div>
<div align="center"><h4><p> My name is Alyssa Chvala, and this website is going to be my portfolio. Feel free to look around - I've done work in several different programs and media, including Photoshop, Flash, Illistrator, pencil, pen, pastel, paint. The Navigation bar should be to your left, and it's relatively easy to use. :)</p></h4></div>
<script>
if (!document.layers)
document.write('<div id="divStayTopLeft" style="position:absolute">')
</script>
<layer id="divStayTopLeft">
<!--EDIT BELOW CODE TO YOUR OWN MENU-->
<table border="1" width="175" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" bgcolor="#00AACC">
<p align="center"><b><font size="4">Navigation Menu</font></b></td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFFF">
<p align="center">*
<a href="Index.html">Home </a><br>
<a href="about me.html">About Me </a><br>
*
<a href="photoshop.html">Photoshop</a><br>
*
<a href="illistrator.html">Illistrator </a><br>
*
<a href="flash.html">Flash</a><br>
*
<a href="noncomputerwork.html">Non- Computer Work </a></td>
</tr>
</table>
<!--END OF EDIT-->
</layer>
<script type="text/javascript">
/*
Floating Menu script- Roy Whittle (http://www.javascript-fx.com/)
Script featured on/available at http://www.dynamicdrive.com/
This notice must stay intact for use
*/
//Enter "frombottom" or "fromtop"
var verticalpos="frombottom"
if (!document.layers)
document.write('</div>')
function JSFX_FloatTopDiv()
{
var startX = 3,
startY = 150;
var ns = (navigator.appName.indexOf("Netscape") != -1);
var d = document;
function ml(id)
{
var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
if(d.layers)el.style=el;
el.sP=function(x,y){this.style.left=x;this.style.top=y;};
el.x = startX;
if (verticalpos=="fromtop")
el.y = startY;
else{
el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
el.y -= startY;
}
return el;
}
window.stayTopLeft=function()
{
if (verticalpos=="fromtop"){
var pY = ns ? pageYOffset : document.body.scrollTop;
ftlObj.y += (pY + startY - ftlObj.y)/8;
}
else{
var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
ftlObj.y += (pY - startY - ftlObj.y)/8;
}
ftlObj.sP(ftlObj.x, ftlObj.y);
setTimeout("stayTopLeft()", 10);
}
ftlObj = ml("divStayTopLeft");
stayTopLeft();
}
JSFX_FloatTopDiv();
</script>
</body>
</html>
that's for the index page - and the problem is on all the pages that I created, but I think once we fix this one I should be able to fix the rest...
Bookmarks