The_Warlock
So, there has to be a way to center a whole table, not the text, but the columnar location of the table on the page. I've tried every inline and CSS blivit and blurb I can find and nadda. How in the bloody heck does one do this? While progress is nice, I long for the days of ancient HTML when I could just say and be done with it.
Comments
table .class-of-table {
margin-left:auto;
margin-right:auto;
}
That is, if you're putting class="class-of-table" in the table's declaration. If you're not, just use style="margin-left:auto;margin-right:auto".
bc. table {margin:0px auto;}
If you want only some tables centered, however, I don't know of an easy way. You could make a specific class of centered tables in the CSS, but I think you'd have to write the table itself in HTML for it to apply, which would really suck.
Inline CSS looks something like
All your table coding goes in here
More table stuff
I don't think you can use it with the textile code for tables...
Here's more about HTML tables if you've never tried to code one before: "HTML Tables":http://www.w3schools.com/html/html_tables.asp
table(css-class){style-stuff}.
| Table Text | Goes Here |
So if you can't use CSS classes, do it as:
table{margin-left:auto;margin-right:auto}.
| Table Text | Goes Here |