'Souls IPB Archive (November 2007–October 2012)
How do I do google fonts in profile shell thing? - Printable Version

+- 'Souls IPB Archive (November 2007–October 2012) (https://soulsrpg.com/ipb)
+-- Forum: Dead OOC (https://soulsrpg.com/ipb/forumdisplay.php?fid=100)
+--- Forum: Dead Questions & Help (https://soulsrpg.com/ipb/forumdisplay.php?fid=47)
+--- Thread: How do I do google fonts in profile shell thing? (/showthread.php?tid=28857)



- Tyko Amini - 06-23-2012

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 ?


- 'Souls Assemblage - 06-23-2012

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


- Tyko Amini - 06-23-2012

Thank youuu <3

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