I have a different question, I think, related to table width.
Relevant page = http://freetravelgenius.com/#other
Please look at Column 1. If you are using Windows Chrome, it looks as I intend, the credit card picture fits just perfectly in the width. If you look at any table other than the "Mega bonuses" tab (which is table id#1) from IE9 or Firefox6, there is a lot of extra space in column 1. This is unfortunate since that means some of the other columns are very much bunched up.
It took me a while to notice this since I've been using chrome.
I understand each browser has its own algorithms for determining column widths that can override the programmers declarations. However, is there an override to the override or some other trick?
This is what I tried so far in the plugin's custom css.
.wp-table-reloaded img {
margin: 1px 1px 1px 1px;
border: 0px;
}
.wp-table-reloaded .column-1 {
width:70px !important;
max-width:70px !important;
padding: 1px 1px 1px 1px;
text-align:center;
}
Thanks!