Hello all.
If you have any issue with the wiki to make great tables : you can edit the existing pages to see how the columns are made.
For example, I edit the home pages and all the weapons pages to update the tables / columns.
It is good to know that our wiki theme use bootstrap. So we can use bootsrap rules to layout the wiki pages ( as you will see in home page & weapons pages ).
So if you want to make a table / multiple table the best way is to use boostrap tech ( good display on every devices ).
To do this you will use some html code :
<div class="row">
<div class="col-sm-4"> My first column </div>
<div class="col-sm-4"> My second and centered column </div>
<div class="col-sm-4"'> My third column </div>
</div>
So :
- All columns must be in a row ( div class="row" )
- All columns have a size (here a size of 4 ) : col-sm-X
- A line has a size of 12. So if we make 3 columns of size 4 we are right ( For two columns we will use col-sm-6 )
The table that we will put in each column use the normal mediawiki syntax. If you have any hesitation on how to made a table, please refer to the page of a weapon.
Feel free to contact me by email / pm if you have any issue with this.