I'm not really sure how to explain it any more than it is in this thread. And I gave screenshots of the shopping cart and the product page in my last post, but I'll try to explain it more.
URL:
www.digitalguarddawg.com
Enterprise v 2.2.2
Starting with a stock standard installation of HS, the client wanted the prices on the PRODUCT PAGES to be larger (see image called h505e4b8.jpg in my last post). So I went into the frontend.custom.css file and changed the following css:
span.hikashop_product_price_full{
text-align: center;
font-weight:bold;
[color=#ff0000][b]font-size: 20px;[/b][/color]
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left:10px;
}
Note the font size changed to 20px and bolded (don't think bold was standard).
What I didn't realize (I think this is actually wrong and should have had it's own css anyway) is that the prices in the shopping cart also use this piece of css to render the shopping cart pricing (see image in previous post called hf2b9905.jpg). I do not want this large pricing in the cart, I want whatever the css was before - might have been more like 12px.
Xavier gave me the following code:
.hikashop_product_page .hikashop_product_price_full{
text-align: center;
font-weight:bold;
font-size: 20px;
display:block;
margin-bottom:5px;
margin-top:10px;
margin-left:10px;
}
to insert which was meant to fix the cart display issue. I added to frontend.custom.css at the end, but it made no difference. I don't know what to edit (I assume my guess at frontend.custom.css was correct given that Nicolas looked for, and found, my code there) or what to insert to accomplish what I want - big bold text on product pages, small normal text in the cart.