Thread:StrangerFromTheInternet/@comment-27042449-20170208062230/@comment-29898844-20170213144026

Heyo, one more thing:

I'm currently working with tables a lot, and I can't help but notice that the content inside the table cells has almost no horizontal padding, which looks really odd in many cases. It looks more like |content| and less like | content |, basically.

Currently, we don't seem to be using any custom CSS for our tables, meaning that we're still using the default padding of 0.2em on all sides. I'd like to propose setting the horizontal padding to 0.5em.

This would require adding the following CSS to our Wikia.css

/* Add some horizontal padding to table contents */
table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td {
    padding: 0.2em 0.5em;
}

Thanks for your consideration :)