View Full Version : css codes?


erieko
06-21-2003, 08:13 AM
i'm not sure if there's something wrong with my codes.. but each time i type in CSS codes, it doesn't show up on frontpage!!

i've been trying to put up the css for the page on my iframe, but nothing seems to work -- please help! ;____;


<style type="text/css">
<!--
body
{ background-color: #ffffff;
scrollbar-face-color: ffcc99;
scrollbar-highlight-color: ffffcc;
scrollbar-3dlight-color: ffffff;
scrollbar-darkshadow-color: ffcc99;
scrollbar-shadow-color: ffcc66;
scrollbar-arrow-color: ffffff;
scrollbar-track-color: ffcc99;

cursor:help
}
-->
</style>
<style type="text/css">
<!--


A:link
{ text-decoration: none; color:#0771a9;}
A:visited
{ text-decoration: none; color:#0880c0;}
A:active
{ text-decoration: none; color:#ffb0db }
A:hover
{ text-decoration:none; color:#32A6E2; cursor:wait;
background-color: e1e1ff;
}
td
{ font-family: verdana; color:#0099cc; font-size: 11px;
}
-->
</style>


is there something wrong with microsoft frontpage? ^^;;;

thanks so much!

MaGiCSuN
06-21-2003, 08:58 AM
where exactly did you put it on the page?

Love,
Mirna

Cherchezlafemme
06-23-2003, 09:27 PM
Why don't you type it all in one style tag? Like so:

<style type="text/css">
<!--
body
{ background-color: #ffffff;
scrollbar-face-color: ffcc99;
scrollbar-highlight-color: ffffcc;
scrollbar-3dlight-color: ffffff;
scrollbar-darkshadow-color: ffcc99;
scrollbar-shadow-color: ffcc66;
scrollbar-arrow-color: ffffff;
scrollbar-track-color: ffcc99;

cursor:help;
}

A:link
{ text-decoration: none; color:#0771a9;}
A:visited
{ text-decoration: none; color:#0880c0;}
A:active
{ text-decoration: none; color:#ffb0db }
A:hover
{ text-decoration:none; color:#32A6E2; cursor:wait;
background-color: #e1e1ff;
}
td
{
font-family: verdana; color:#0099cc;
font-size: 11px;
}
-->
</style>



I'm not sure if it makes a whole lot of a difference but, do what MagicSun says see where you have placed it it can only go in two places either the <BODY> or the <HEAD> Oh yes and you made some mistakes in there too but if you copy and paste the code I posted it has been corrected!