moderncombat

Users

Game Guides

Tips when writing (templates) optimised for mobile / Game Guides.

Use as many tags as possible since mobile doesnt read style

EXAMPLE:

<center><span style="color:red;">'''TEXT'''</span></center>

instead of

<span style="align:center; font-weight:bold; color:red;">TEXT</span>

Special classes and ids

In the CSS
.dontshowthis {
   display: none;
}
On the page
<!-- Hide in Game Guides -->

<div id="va-titleicons">
This text will not show up in Game Guides
</div>

<!-- Hide in Browsers -->

<div class="dontshowthis">
This text will not show up on web pages
</div>

Use classes and other marks in tables

TBA