two things I looked at that might be a problem.
Look for these in your stylesheet.css file
Curently:
Code:
a:visited link: {color: #400040;}
Change to:
Code:
a:visited {color: #400040;}
Currently: (i think you were just missing the semi-colon)
Code:
/* List bullet code */
ul
{list-style-image: url("http://www.geocities.com/rayasroost/pics/rbullet.gif")}
/* End of list code */
Change to this:
Code:
/* List bullet code */
ul {
list-style-image: url("http://www.geocities.com/rayasroost/pics/rbullet.gif");
}
/* End of list code */