| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,59 @@ |
| 1 |
+// ---------------------------------------------------------------------- |
|
| 2 |
+// LICENSE |
|
| 3 |
+// |
|
| 4 |
+// This program is free software; you can redistribute it and/or |
|
| 5 |
+// modify it under the terms of the GNU General Public License (GPL) |
|
| 6 |
+// as published by the Free Software Foundation; either version 2 |
|
| 7 |
+// of the License, or (at your option) any later version. |
|
| 8 |
+// |
|
| 9 |
+// This program is distributed in the hope that it will be useful, |
|
| 10 |
+// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
+// GNU General Public License for more details. |
|
| 13 |
+// |
|
| 14 |
+// To read the license please visit http://www.gnu.org/copyleft/gpl.html |
|
| 15 |
+// ---------------------------------------------------------------------- |
|
| 16 |
+ |
|
| 17 |
+Copyright 2006 by Tammy Keefer. |
|
| 18 |
+ |
|
| 19 |
+This skin is pure CSS. No graphics. To change the color just change the colors within the stye.css file. |
|
| 20 |
+There are a total of 4 colors in the skin (other than black and white). Just about any |
|
| 21 |
+four shades of the same color seem to work well with this skin. (I suggest you back up the |
|
| 22 |
+current style.css before you start playing.) Try a color palette generator for color scheme |
|
| 23 |
+ideas: |
|
| 24 |
+ |
|
| 25 |
+http://wellstyled.com/tools/colorscheme2/index-en.html |
|
| 26 |
+http://www.colorcombos.com/ |
|
| 27 |
+http://www.visibone.com/colorlab/ |
|
| 28 |
+http://websitetips.com/colortools/sitepro/ |
|
| 29 |
+ |
|
| 30 |
+The variables.php file in here sets up the default blocks as the skin expects them |
|
| 31 |
+to be set to prevent conflicts with the site's default block configuration. If you add a block, |
|
| 32 |
+make sure to turn it back on in the variables.php by deleting/editing the lines for that block. |
|
| 33 |
+ |
|
| 34 |
+To add items to the menus (top or bottom) add them in the variables.php. For instance, |
|
| 35 |
+to add the top tens to the top menu you would change: |
|
| 36 |
+ |
|
| 37 |
+$blocks["menu"]["content"] = array ( |
|
| 38 |
+ 0 => 'adminarea', |
|
| 39 |
+ 1 => 'logout', |
|
| 40 |
+ 2 => 'login', |
|
| 41 |
+ 3 => 'search', |
|
| 42 |
+ 4 => 'browse', |
|
| 43 |
+ 5 => 'members', |
|
| 44 |
+ 6 => 'home'); |
|
| 45 |
+ |
|
| 46 |
+to: |
|
| 47 |
+ |
|
| 48 |
+$blocks["menu"]["content"] = array ( |
|
| 49 |
+ 0 => 'adminarea', |
|
| 50 |
+ 1 => 'logout', |
|
| 51 |
+ 2 => 'login', |
|
| 52 |
+ 3 => 'search', |
|
| 53 |
+ 4 => 'tens', |
|
| 54 |
+ 5 => 'browse', |
|
| 55 |
+ 6 => 'members', |
|
| 56 |
+ 7 => 'home'); |
|
| 57 |
+ |
|
| 58 |
+NOTE: Because the menu items are floated right. Add your links in REVERSE order. Home |
|
| 59 |
+comes last in the list but is displayed first! |