Open stylesheet.css
Look for:
.productListing-data
(It may be part of a "list"... meaning that it shares styles with other elements).
If it does appear in a list, make sure that the styles do not conflict with:
border-bottom:1px solid #CC0000;
padding:0.5em;
If there are no conflicts, you can put the declaration anywhere in the stylesheet. It's probably good practice to stick it at the bottom, under a commented section called:
Code:
/* My css edits */
.productListing-data {
border-bottom:1px solid #CC0000;
padding:0.5em;
}
... then you know it's a change you made, and you know where to find it.