chivick258
I will go straight to the point.
CSS (Cascading Style Sheets) is what all website or wapsite owners use to design their sites.
HOW TO ADD CSS TO AN XTGEM SITE PAGE:
First, you must know the html code for inserting CSS. The html code is
<link rel="stylesheet" href="input the CSS url here" type="text/css"/>
Copy code
Secondly, go to the xtgem page you want to add the CSS, click on the "open in code editor" link. Then put the html code after the <head> tag and before the <meta http......> tag.
HOW TO DESIGN WITH THE CSS:
All css have div classes, and that is what is used to design the site (the type of div depends on the type of css).
You can get lots of css with preview in
stevendie.xtgem.com .They also list all the div classes in a css.
THE HTML CODE FOR ADDING DIV CLASS:
<div class="DIV NAME"><insert the code, link or image you want to put inside the div></div>
Copy code