Hi,
I've been using firebug to try and solve this but to no avail.
Please see photo to help understand the problem.
For some reason the prices in red with the css :
span.hikashop_product_price {
color: #990000;
white-space: nowrap;
}
is off set and not set in alignment with the item name and price.
But also the subtotalprice which has the same class name (span.hikashop_product_price) is even more offset than the top two.
So I have added a margin to the span.hikashop_product_price class as such:
span.hikashop_product_price {
color: #990000;
white-space: nowrap;
margin-bottom: 12px;
}
This moves all 3 red prices the same but as the price of the sub total was already more offset than the other, it is still not in the right place.
But I cannot find a way to differentiate the subtotal price from the other ones via css and hence solve the problem.
Nor does any margin work by applying it to the class of the subtitle
.hikashop_cart_module_product_total_title {
text-align: right;
}
like so
.hikashop_cart_module_product_total_title {
text-align: right;
margin-bottom: 20px;
}
Can anyone help with this please?
Many thanks in advance
Claire