View Full Version : Please fix my code


ShyLiLQT
01-27-2003, 10:31 PM
Here's my code and here is the page: www.news4kidz.esmartkid.com (http://www.news4kidz.esmartkid.com)

<HTML>
<HEAD>
<style type="text/css">
<!--

A:link
{ text-decoration: none }

body
{ background-color: #FF3300 }

font-family: verdana;
color: #F8F8F8;
letter-spacing: value; [5pt]
font-weight:value; [bold]
font-size:value; [small]

scrollbar-face-color : #3300ff;
scrollbar-highlight-color : #0000FF;
scrollbar-3dlight-color : #0000FF;
scrollbar-shadow-color : #FF0000;
scrollbar-darkshadow-color : #FF000;
scrollbar-track-color : #ff0000;
scrollbar-arrow-color : #0000FF }

-->
</style>
<TITLE>FRAME</TITLE>
</HEAD>
<BODY>

CCSara3169
01-27-2003, 10:40 PM
Don't eave those extra "[ ]" or "#" in your code.
Try this, it worked for me


<style type="text/css">
<!--

A:link
{ text-decoration: none }

body
{ background-color: #FF3300 }

font-family: verdana;
color: #F8F8F8;
letter-spacing: value; 5pt
font-weight:value; bold
font-size:value; small

scrollbar-face-color : 3300ff;
scrollbar-highlight-color : 0000FF;
scrollbar-3dlight-color : 0000FF;
scrollbar-shadow-color : FF0000;
scrollbar-darkshadow-color : FF000;
scrollbar-track-color : ff0000;
scrollbar-arrow-color : 0000FF }
}
-->
</style>

Dude128
01-28-2003, 12:39 AM
you have to replace the word value with the value you want. for example:

letter-spacing: 5pt;

also, you should have the # before the color codes.

the code above really shouldn't work. even if it does for one person, there's no guarantee that it will work on all browsers.

pb&j
01-28-2003, 02:59 AM
A bit more corrected. You had an extra closing } in there ...

<HTML>
<HEAD>
<style type="text/css">
<!--

A {
text-decoration: none;
}

body {
background-color: #FF3300;
font-family: verdana;
color: #F8F8F8;
letter-spacing: 5pt;
font-weight:bold;
font-size:small;
scrollbar-face-color : #3300ff;
scrollbar-highlight-color : #0000FF;
scrollbar-3dlight-color : #0000FF;
scrollbar-shadow-color : #FF0000;
scrollbar-darkshadow-color : #FF000;
scrollbar-track-color : #ff0000;
scrollbar-arrow-color : #0000FF;
}
-->
</style>
<TITLE>FRAME</TITLE>
</HEAD>
<BODY>

CCSara3169
01-28-2003, 09:41 PM
o sorry. worked for me though. [I was using easy designer]