My font is furry!!! ARGGGHHH!

citrus_cyanide

New Member
hm, I didn't see anything, but just define the selector with something like this. If your link is what you want transparent here is the code i've always used.

a: link{
backgorund-color: transparent;
}

That should work just fine.
 

citrus_cyanide

New Member
Well now that I saw it you want the header changed so....You prolly already tried this but i'd guess this. I'm not sure because I don't do much with headers.

h1{
background-color: transparent;
}

or you might try a pseudo-class. like this.

h1.notfuzzy{
backgorund-color: transparent;
}
 
Top