Hello forum:
This is a example of my mobile site's HTML:
<table class="basket">
<tr id="basket-header-row" style="height:11px;">
<td bgcolor="#dddddd" class="qty"></td>
<td class="prod">Item</td>
<td colspan=2 class="qty">Quantity</td>
<td class="qty">Each</td>
<td class="m-total">Total</td> </tr>
I want to adjust the width of the m-total class column but when I modify the m-total class by adding a width (added width:10px;):
.basket #basket-header-row td.m-total{
border-right:1px solid #979797;
text-align:center;
width:10px;
}
The column width doesn't change. What am I doing wrong?
Thanks, Larry
This is a example of my mobile site's HTML:
<table class="basket">
<tr id="basket-header-row" style="height:11px;">
<td bgcolor="#dddddd" class="qty"></td>
<td class="prod">Item</td>
<td colspan=2 class="qty">Quantity</td>
<td class="qty">Each</td>
<td class="m-total">Total</td> </tr>
I want to adjust the width of the m-total class column but when I modify the m-total class by adding a width (added width:10px;):
.basket #basket-header-row td.m-total{
border-right:1px solid #979797;
text-align:center;
width:10px;
}
The column width doesn't change. What am I doing wrong?
Thanks, Larry
Comment