View Full Version : Help! Css Mess Up, on My Part..


squeekyclean
08-04-2004, 12:42 AM
I cant make this css code work? Any ideas?

<HTML>
<HEAD>
<TITLE>
ŠPintel LakeŠ
</TITLE>
<style type="text/css">

A:link
{ text-decoration: value; none color:#000000; }
A:visited
{ text-decoration: value; none color:#000000; }
A:active
{ text-decoration: value; none color:#000000; }
A:hover
{ text-decoration: value; none color:#000000;

background-image: url http://www.rayhennig.com/beynac/images/lake.jpg;
background-color: #000000;


cursor: value; crosshair;}

h1 {font-family: value; papyrus
color: value; #FFC132 }

p {font-family: value; PAPYRUS
color: value; #FFC132 }

body
{ background: #000000;
background-image: url(value); http://www.rayhennig.com/beynac/images/lake.jpg
background-repeat: value; no-repeat
background-attachment: value; fixed

font-family: value; papyrus
color: #FFC132 ;
font-weight: value; normal
font-size: value; small


scrollbar-face-color : #000000;
scrollbar-highlight-color : #FFC132;
scrollbar-3dlight-color : #000000;
scrollbar-shadow-color : #000000;
scrollbar-darkshadow-color : #000000;
scrollbar-track-color : #FFC132;
scrollbar-arrow-color : #FFC132;

margin-top: 1;
margin-bottom: 1;
margin-left: 1;
margin-right: 1;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}</style>

</HEAD>
<BODY>


</BODY>
</HTML>

Rosey
08-04-2004, 01:06 AM
you are supposed to replace the word value by the value.

squeekyclean
08-04-2004, 01:11 AM
Thanks Im really stupid!

Rosey
08-04-2004, 02:08 AM
nah! everyone does it :)

squeekyclean
08-04-2004, 03:27 AM
Lol..

squeekyclean
08-04-2004, 04:25 AM
I cant make the cursor stay crosshair though, any ideas?

horse*chica
08-04-2004, 05:06 AM
put cursor: crosshair; into the body part (like body {cursor: crosshair;} )

Luzee12
08-04-2004, 06:47 AM
A:link
{ text-decoration: value; none color:#000000; }
A:visited
{ text-decoration: value; none color:#000000; }
A:active
{ text-decoration: value; none color:#000000; }
A:hover
{ text-decoration: value; none color:#000000; }

background-image: url http://www.rayhennig.com/beynac/images/lake.jpg;
background-color: #000000;


cursor: value; crosshair;}



You've got the cursor and the background in the link part of your CSS; move the bracket . . . thingy . . . } <-that thing to where I put it in blue, right at the end of your "hover" link setup. Also, your background information is in there twice; you only need it once.

But those are just minor things; your real problem is those values, like Rosey said. I did that too, on my first page, but my little brother pointed it out to me before I had to ask anyone. The embarrassing thing is he doesn't know anything about HTML! ^_-

Rosey
08-04-2004, 10:48 PM
i think the reason they put the background info there was so that when someone hovers over a link, the background will change over that link so it will look kinda highlighted.
Horse chica is right though, put the cursor info in the body part.