Mabinogi World Wiki is brought to you by Coty C., 808idiotz, our other patrons, and contributors like you!!
Want to make the wiki better? Contribute towards getting larger projects done on our Patreon!

New Table Type

New Table Type

Can you make a new table type called Black Imagetable which is identical to a normal imagetable in every way excluding the icon area being a light shade of gray? This would be used on gallery pages such as this one or for items that only come in black and cannot be dyed.

Pyro - (Talk)14:58, 23 April 2012

Two more things. First, another blackimagetable but one with all squares as gray, and a navframe whose border only goes around the blue rectangle with the text and hide/show and not over the NavContent.

Pyro - (Talk)14:24, 10 May 2012
 

tell me how to code it & I'll do it =v

Angevon (Talk)14:04, 16 May 2012
 
Edited by another user.
Last edit: 19:37, 3 September 2012

For the table, I may be wrong because I can't test this anywhere, but replace what's in the left side with what's in the right.

table.mabitable,
table.prettytable,
table.roundtable,
table.imagetable,
table.mabitable table,
table.prettytable table,
table.roundtable table,
table.imagetable table {
    text-align: center;
    border-collapse: collapse;
    background-color: #fff;
}
table.mabitable,
table.prettytable,
table.roundtable,
table.graytable,
table.imagetable,
table.mabitable table,
table.prettytable table,
table.roundtable table,
table.graytable table,
table.imagetable table {
    text-align: center;
    border-collapse: collapse;
    background-color: #fff;
}
table.mabitable td, table.mabitable th,
table.prettytable td, table.prettytable th,
table.roundtable td, table.roundtable th,
table.imagetable td, table.imagetable th {
    vertical-align: middle;
}

table.mabitable td, table.mabitable th,
table.imagetable td, table.imagetable th {
    border: 1px #aaa solid;
    padding: 4px;
}
table.mabitable td, table.mabitable th,
table.prettytable td, table.prettytable th,
table.roundtable td, table.roundtable th,
table.graytable td, table.graytable th,
table.imagetable td, table.imagetable th {
    vertical-align: middle;
}

table.mabitable td, table.mabitable th,
table.graytable td, table.graytable th,
table.imagetable td, table.imagetable th {
    border: 1px #aaa solid;
    padding: 4px;
}
table.mabitable caption,
table.prettytable caption,
table.roundtable caption,
table.imagetable caption {
    margin-left: inherit;
    margin-right: inherit;
    font-size: 116%;
    font-weight: bold;
}
table.mabitable caption,
table.prettytable caption,
table.roundtable caption,
table.graytable caption,
table.imagetable caption {
    margin-left: inherit;
    margin-right: inherit;
    font-size: 116%;
    font-weight: bold;
}

So pretty much, it's the exact same thing as image table without this line being altered:

table.mabitable tr.image td, table.mabitable td.image,
table.imagetable td, table.imagetable th {
    background-color: #000;
}

As for the Navframe tag, I'll get back to you on that. I need to test it somewhere before we can use it here.

Pyro - (Talk)16:57, 16 May 2012
 

What are the intended uses of these new tables, may I ask?

 

I already said why, items that only come in black or black items in image gallery pages. Part of this conversation is here.

Pyro - (Talk)19:26, 16 May 2012