1. Which tools can help me to find CSS Styles, classes and IDs?
If you use Firefox, you should install the Add-On Firebug or correspondingly IE Developer Toolbar for Internet Explorer. This tools allow you to choose any element of the game by clicking on it and get all classes, id, styles etc. of this element displayed.
If you want to alter an specific Element, get the class/id and search for it in the CSS files. That way you will find it much faster to change the styles.


2. How can I create grafikpacks for other countries?
If you activate a grafikpack, a gp_check.css in the suitable language folder is necessary. In which language folder it is searched, is depending on the server and country, on the grafikpack should be activated.
So one possibility would be: Copy the lang/[lang] folder from the grafikpack you created and rename it as the suitable country token. But please don't forget, that the images in the lang folder contain language specific texts, and user could have problems playing the game, if they don't understand the texts on the buttons, for example.
The second possibility is to download the default grafikpack for the country that should be supportet and copy the lang/[lang] folder from there. In this way the standard images für this country will be used.

Possible country tokens:
Code:
ae   ee   il   nl   si
au   en   in   no   sk
ba   es   ine  ph   th
bg   fi   ir   pk   tr
br   fr   it   pl   tw
cl   gr   jp   pt   ua
cn   hk   kr   ro   uk
cz   hr   lt   rs   us
de   hu   lv   ru   vn
dk   id   my   se   za


3. If I want to make my background colored, some tables still have white background. How can I make the table background transparent?
All tables whithout an border, have a white background - correspondingly the THs and TDs in the table. Search for the table ID in travian_table-[specification].css for the table you want to change. Now replace all background-color:#FFFFFF; for table th and td with background:none; respectively add:
Code:
div.example table.example,
   div.example table.example th,
   div.example table.example td {background:none;}



- to be continued -