I want to override some html tags and add a border to the table displaying the contents of the shopping cart. How would I do that? I tried setting styles for the id, but that didn't work. I just don't know css well enought yet to do it. Here is what I see in the html:
<table border="0" width="100%" cellspacing="0" cellpadding="0" id="cartContentsDisplay">
<tr class="tableHeading">
<th scope="col" id="scQuantityHeading">Qty.</th>
<th scope="col" id="scUpdateQuantity"> </th>
<th scope="col" id="scProductsHeading">Item Name</th>
<th scope="col" id="scUnitHeading">Unit</th>
<th scope="col" id="scTotalHeading">Total</th>
<th scope="col" id="scRemoveHeading"> </th>
</tr>



