I’m trying to adjust the spacing between the sale price and the original price, the gap between the two is too large (see attachment). I was originally given this code (see below):

/* Sale Price */
.price del {
display: none;
}
.product-information .price del {
float: right;
margin-right: 80%;
margin-top: -10px;
}
.product-information .price del {
display: block;
}
I was wondering if I could do the following:
1. Reduce gap between price & sale price (see attachment)
2. Change the color of Sale Price to be red and the original price to be light grey.
Thank you,
Michael Parra


