
Not sure when the official guide will come out but thought i would write a small guide about some CSS code implementations, will update as i go along, hopefully some clans may find this useful. Unfortunately Xippy are yet to implement full customization , so theres only a limited amount you can do at present.
To add CSS code enter your CP and go to main settings.
You can simply change the colour to your needs by using a hex generator. (google)
You can see all these in motion on my site:
www.rgaming.co.ukWhere i put (in p) this means place the code in the p{} brackets else all other code belongs on its own line within the <style> area.hopefully thats simple to understand.
Change Hyperlinks:<style type="text/css">
a:link {
COLOR: #3299CC;
}
a:visited {
COLOR: #FBEC5D;
}
a:hover {
COLOR: #91219E;
}
a:active {
COLOR: #FF1CAE;
}
</style>
Change main text (colour and size):<style type="text/css">
p {color: #B4CDCD; font-size: 1 em;}
</style>
Alignment (in p)text-align: center;
Tighten up line spacing (in p)line-height: 1.2em;
Change Font - doesnt apply to forums though
(in p)font-family: Georgia, sans-serif;
Font Boldfont-weight: bold;
Change background colour of anything in bold b {background-color: #E2DDB5; }
image under text - great for watermarking!p {background-image: url(http://yoururl); background-repeat: no-repeat; }