Thread: Help!!!!
View Single Post
  #20 (permalink)  
Old 11-10-2008, 12:41 PM
google junky google junky is offline
WebProWorld Veteran
 
Join Date: Jun 2004
Location: Indiana
Posts: 578
google junky RepRank 1
Default Re: Help!!!!

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 */
Reply With Quote