To modify the appearance of the tables
Perhaps, you also notice that, but you can create tables thanks to syntax wiki. This said, their appearances are enough... ugly.
Don't panic, we will change all that.
Open the file
manager/extinc/wikirender/WikiRenderer.conf.php and
manager/extinc/wikirender/WikiRenderer_w2x.conf.php to replace all them
by
<table class="wiki_table">
Open then your style sheet (CSS) and add to the end:
table.wiki_table {
background: #f9f4f4 url("images/your-image.png") repeat fixed 0 0;
border-spacing: 0px;
border-collapse: collapse;
font-size: 100%;
padding:0;
margin:0;
}
table.wiki_table tr,td,th {padding:0; margin:0;}
table.wiki_table td {
padding: 3px;
border: 1px solid #8cacbb;
}
To have the same output with the preview, open the file
manager/themes/default/style.css and insert the lines:
table.wiki_table {
background: #f9f4f4 url("../xmedia/theme/your-gabari/images/your-image.png") repeat fixed 0 0;
border-spacing: 0px;
border-collapse: collapse;
font-size: 100%;
padding:0;
margin:0;
}
table.wiki_table tr,td,th {padding:0; margin:0;}
table.wiki_table td {
padding: 3px;
border: 1px solid #8cacbb;
}
Obviously, the code css has to be fit to your templates ;)
Be sure to save all the files, and go writing some resources.