Hi,

2009/1/27 Zaki Akhmad <[email protected]>

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Hello,
>
> I am installing mediawiki on Debian testing. But I can't see the table
> line. Is it there's plugin should be activated or what? I wrote the
> table like this:
>
> ====== Daftar Aplikasi ======
>
> {| class=prettytable
> |-
> !No.
> !Aplikasi
> !Keterangan
> |-
> ||1.||gedit || Penyunting teks
> |-
> ||2.||gnome-terminal || Terminal/console
> |}
>

the prettytable style class is not part of the default skins AFAIK. You have
to set it up yourself in MediaWIki:Common.css

Try adding something to that file like:

.prettytable, .prettytable table
{
    border: 1px solid rgb(176, 196, 222);
    border-collapse: collapse;
    font-size: 95%;
    margin: 1em;
    background: rgb(255, 255, 255);
}

.prettytable table
{
    margin: 0;
}

.prettytable td, table.prettytable th
{
    border: 1px solid rgb(176, 196, 222);
    padding: 4px;
}

.prettytable th
{
    background-color: rgb( 70, 130, 180);
    color: rgb(255, 255, 255);
}


-- 
Regards,

Jean-Marc
--
      ___
 @@  // \\      "De Chelonian Mobile"
(_,\/ \_/ \     TortoiseSVN
  \ \_/_\_/>    The coolest Interface to (Sub)Version Control
  /_/   \_\     http://tortoisesvn.net
_______________________________________________
MediaWiki-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to