CODE
<div id="noRightMenu">
<?php
if (file_exists($relPath."leftside.php")) {
@include($relPath."leftside.php");
}//if
?>
<br>
<div class="centerTable">
<div class="topicTitle">Armor</div>
<div class="news">
<div class="newsContent" style="border-top : 1px solid white;">
<table border="0" cellspacing="0" cellpadding="0" width="100%" class="infoTable">
<tr>
<td colspan="2"></td>
</tr>
...
#noRightMenu
{
*height : 565px;
min-height : 547px;
margin-left : 165px;
margin-right : 15px;
}
.centerTable
{
background : url("images/tableBg.jpg");
border : 1px solid white;
width : 100%;
}
.topicTitle {
z-index : 0;
font-size : 20px;
font-weight : bold;
text-align : left;
text-indent : 10px;
border-bottom : 1px solid white;
background: #000040;
width : inherit;
}
.news {
margin-top : 15px;
margin-bottom : 15px;
width : inherit;
position : relative;
}
.newsContent {
background: url("images/tableUpperBg.jpg");
text-indent: 25px;
margin-left : 15px;
margin-right : 15px;
margin-bottom : 3px;
border: 1px solid white;
border-top : 0px;
}
.infoTable
{
display : table;
}
.infoTable td
{
display : table-cell;
padding-left : 15px;
padding-top : 2px;
}
.infoTable th
{
display : table-cell;
border-bottom : 1px solid white;
font-size : 16px;
font-weight : normal;
text-align : left;
padding-left : 15px;
background-color: #000040;
}
PS It still does this even if i remove the infoTable display : table element or if i put width : 100% in the infoTable class instead of in the table tag.
Hope someone can help. Thanks in advance.

