That was my first thought too, although I was thinking of setting the table widths, so instead of
/* Tables */
.basicTable{
border: 0px;
width: 98%;
}
.errorTable{
border: 1px solid #FD7D40;
background-color: #FFF2E6;
width: 98%;
color: #FF0000;
}
.tableBorder, .wwgAdTable{
border: 1px solid #B6B9CB;
background-color: #FFFFFF;
width: 98%;
}
|
use
/* Tables */
.basicTable{
border: 0px;
width: 900px;
}
.errorTable{
border: 1px solid #FD7D40;
background-color: #FFF2E6;
width: 900px;
color: #FF0000;
}
.tableBorder, .wwgAdTable{
border: 1px solid #B6B9CB;
background-color: #FFFFFF;
width: 900px;
}
|
Either way should do the trick i would've thought.