View Full Version : What's with that?


Neptune
03-28-2003, 10:55 PM
Okay. This is a weird question, but is Lissa's CSS code all it should be? I always get an error sign when I follow the one she made. It might be my error, but it happens on all my pages (when I use it) and I was wonder what's up with that.

Here's an example of my CSS:

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

body
{background-color="#000000";

font-family: "courier new, tahoma, default";
color: "#FFFFFF";
font-weight: "normal";
font-size: "x-small";

scrollbar-face-color : "#000000";
scrollbar-highlight-color : "#ffffff";
scrollbar-3dlight-color : "#000000";
scrollbar-shadow-color : "#ffffff";
scrollbar-darkshadow-color : "#000000";
scrollbar-track-color : "#000000";
scrollbar-arrow-color : "#ffffff" }


-->
</style>

epolady
03-28-2003, 11:03 PM
Change

background-color="#000000";

to

background-color: #000000;

Try taking out all of the quotes too.

Neptune
03-29-2003, 02:09 AM
Oh my bob. Don't I feel silly! :blush: Thanks!