How do I do google fonts in profile shell thing?
#1
I wanna put a google web font for all the major titles in the profile skin shell instead of arial/verdana/etc., but how do I do this ?
#2
It looks like you have it started, but you want to do the links, too, right?

Code:
.maintitle a:link, .maintitle a:visited,.maintitle a:active, .maintitle a:hover { font-family:FONT STUFF HERE; }

If you want to have the a:link/a:visited (a regular link and a link you've clicked on before) be a different color from the a:active/a:hover (a link that's loading, a link that's being hovered over) you'll have to separate it, like so:

Code:
.maintitle a:link, .maintitle a:visited {  font-family:FONT STUFF HERE; color:#000000;}
.maintitle a:active, .maintitle a:hover { font-family:FONT STUFF HERE; color:#FFFFFF; }

/sie
#3
Thank youuu <3

The links were good; and I managed to figure out the google fonts thingy Smile


Forum Jump: