View Full Version : Links and Cursors not Working


Sarstar
11-22-2006, 06:36 PM
I'm just changing the code that Lissa suplied for CSS. But they aren't showing up how I changed them! This is what I edited so far, only the colors are working.

A:link
{text decoration:"value";color:#993300;}
A:visited
{text decoration:"value";color:#993300;}
A:active
{text decoration:"value";color:#993300;}
A:hover
{text decoration:"value";underline-overline;color:#993300;}

background-image: url(yourimage.gif);
background-color: #993300;

{cursor:"value";crosshair;}

Arwen
11-22-2006, 06:59 PM
A:link
{text-decoration:none; color:#993300;}
A:visited
{text-decoration:none; color:#993300;}
A:active
{text-decoration:none; color:#993300;}
A:hover
{text-decoration:underline-overline; color:#993300;}

body {
background-image: url(yourimage.gif);
background-color: #993300;
cursor:crosshair;}


Just change the "value"; thing. :)

Sarstar
11-23-2006, 12:49 AM
Ok, thanks very much. I thought that when the value was there just to put "value".
That explains it tons! Tomorrow I shall finish the rest