View Full Version : Font! Css! Argh! Please help me!!


Kawaii Genki
06-25-2004, 05:57 PM
First off, I want my font to be white. But I have a problem...
http://www.kawaiigenki.com/junk/csssucks.jpg

Why is it doing this? :crying:

Here is my css code:
A:link
{ text-decoration: none; color:#FFFFFF; }
A:visited
{ text-decoration: underline overline; color:#FFFFFF; }
A:active
{ text-decoration: ; overlinecolor:#FFFFFF; }
A:hover
{ text-decoration: underline; color:#FFFFFF;

}


body
{ background: #FFFFFF;
font-family: comic sans ms;
color: #000000 ;
letter-spacing: 1pt;
font-weight: bold;
font-size: 11pt;
cursor: crosshair;
direction:ltr;

scrollbar-face-color : #ffffff;
scrollbar-highlight-color : #ffffff;
scrollbar-3dlight-color : #ffffff;
scrollbar-shadow-color : #ffffff;
scrollbar-darkshadow-color : #ffffff;
scrollbar-track-color : #ffffff;
scrollbar-arrow-color : #ff0080;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}

stargrl329
06-25-2004, 06:19 PM
The link is broken :(

Kawaii Genki
06-25-2004, 06:26 PM
http://www.kawaiigenki.com/junk/stupidcss.jpg

Oops..^^;;;;

salomeyasobko
06-25-2004, 06:38 PM
it is doing that because somewhere in your code you must have filter: chroma (color: #FFFFFF).. so try to search through your code where you may have that, or if you want, you can just paste your source code here and i'll try to find it for you :)

Kawaii Genki
06-25-2004, 06:45 PM
Yep! I do have that in my frameset page thingy...^^
Don't I need that to make my I-Frames transparent though?


<html>
<head>
<title>::Kawaii Genki & Destiny's Key::</title>


</head>
<body background="bg2.gif" bgcolor="#000000" bgproperties="fixed">
<center>
<img src="kgbanner.gif">
<table><tr><td>
<IFRAME SRC="dknavi.html" WIDTH=150 HEIGHT=200 FRAMESPACING=5 NAME=A FRAMEBORDER=1 SCROLLING=AUTO ALLOWTRANSPARENCY=TRUE STYLE="filter: chroma(COLOR=#FFFFFF)"></IFRAME></td>
</td>
<td>
<IFRAME SRC="main.html" WIDTH=600 HEIGHT=500 FRAMESPACING=5 NAME=A FRAMEBORDER=0 SCROLLING=AUTO ALLOWTRANSPARENCY=TRUE STYLE="filter: chroma(COLOR=#FFFFFF)"></IFRAME></td>
</td>
<td>
<IFRAME SRC="kgnavi.html" WIDTH=150 HEIGHT=200 FRAMESPACING=5 NAME=A FRAMEBORDER=1 SCROLLING=AUTO ALLOWTRANSPARENCY=TRUE STYLE="filter: chroma(COLOR=#FFFFFF)"></IFRAME></td>

</td>
<td></table>
</body>
</html>

salomeyasobko
06-25-2004, 06:50 PM
the problem is, the code makes whatever color is in the (color=#FFFFFF) part, which in your case is white, transparent.. so if you have white writing, it'll make the white writing transparent! so change the #FFFFFF to a color that doesn't show up anywhere else on your page. then you should be fine :)

Kawaii Genki
06-25-2004, 07:02 PM
Thank you very much! I think I can figure it out from here :)

salomeyasobko
06-25-2004, 07:10 PM
you're welcome :D