| |
|
|
|
|
| |
Quick Skinning Guide By roosevelt Published: November 1, 2006
Print Email
I truly apologize dear customers as I haven't got the time to compile the RGameScript Pro v1.0-v1.2 skinning manual since I have been really busy developing the v1.3 of RGameScript Pro. I will finish the skinning manual as soon as I can but in the mean time you can use the following techniques to customize RGameScript Pro. - Back up any existing skins.
- Do not remove the existing skins. (Read below to learn why)
- Make a new folder under /rskins/yourskinname
- If you've already done the skin and its ready to roll then divide your skin into two parts. So for example if the following code is my whole template:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <table width="100%" border="0" cellspacing="6" cellpadding="5"> <tr> <td width="20%">Left Menu </td> <td width="60%">Contents</td> <td width="20%">Right Menu </td> </tr> </table> </body> </html> Then I will seperate them in this manner: <!-- header.html starts --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <table width="100%" border="0" cellspacing="6" cellpadding="5"> <tr> <td width="20%">Left Menu </td> <td width="60%"> <!-- header.html Ends --> <!-- footer.html starts --> </td> <td width="20%">Right Menu </td> </tr> </table> </body> </html> <!-- footer.html Ends --> - If you have images upload them under your RGameScript Pro directory. For example /rgamescript/images/.
- So your over all template set will look like:
/rskins/yourskinname /rskins/yourskinname/header.html /rskins/yourskinname/footer.html
Page 1 of 3 | Next Page »
View Comments (0) |
|
|
|
|
|
|
|
|