Want to create a skin or use the layout of your website for inscriptio? The following instructions willl show you how to do this (starting from the assumption that you use inscriptio1 and the name of your skin is "myskin").
If you need help, please use the support!
- Start creating a regular website that looks the way you want it. You can use HTML or even PHP.
- Add an image with the size of 580x500 pixels. This is roughly the size inscriptio needs (note that the height may vary due to several special pages like the list of contacts). This picture "reserves" the place for inscriptio. You can download a picture of this size right here.
- To set the colors for inscriptio you have to use a css-file. Please name it "myskin.css". There are three classes you should use:
(see screenshot)This class: defines the following things: gitter the table unterpunkt the names of the items zwischenpunkt the subheaders
- Save all the images in the subfolder "images_myskin"!
- Take care that you provide links to the following files:
(see screenshot)This link: leads to: start.php home to inscriptio kontakteanzeigen.php list of contacts neuerkontakt.php add a contact neueemail.php new e-mail setup.php setup
Experienced users only:
You can create the links as images (buttons) or as text. If you use regular textlinks they will always be in your language. In case you want them to appear in the language the user selects, please write:
<a href="LINKURL"><?php
echo "$variable";
?></a>
instead of:
<a href="LINKURL">TEXT</a>
inscriptio will replace $variable with the text!
At this $variable: inscriptio writes the text: $index_start Home $index_anzeigenedit List contacts $index_neuerkontakt Add contact $index_neueemail New e-Mail $index_setup Setup
So, a textlink to the list of contacts would be like this:
<a href="kontakteanzeigen.php"><?php
echo "$index_anzeigenedit";
?></a>
- Save it as "skin_h_myskin.php"
- Create an empty file and save it as "skin_f_myskin.php".
- Open both files in a regular text editor.
- Move all the code behind the tag of the image mentioned in point 2. into the empty file.
- Delete the image tag (at the end of "skin_h_myskin.php").
- Save all the files and upload them to your inscriptio directory. Run inscriptio and go to the setup menue.
If you need help, please use the support!