I am trying to add padding to a single cell in my table. I created a class for the td element and specified its style in my CSS file as shown below:
.itemQuantity
{
padding-right:30px;
text-align:right;
background-color: #EEE;
}
However, the padding-right property does not appear to be taking effect.