Our Magento is set to display the tax details on the cart / checkout page but a [+] sign which indicates to the user he can expand the tax to see the details is missing. The [-] should also be set to collapse the tax details. These [+] and [-} appears on the Magento default template so I guess this is a small bug in the JP_PAINITE template.
See pictures attached.
Thank you.
4 answers
Dear netbuilder!
Could you give me the link to Magento default template that has tax class -?
Regards!
Dear netbuilder!
Could you give me the link to Magento default template that has tax class -?
Regards!
Please see ticket VKD-840-41982. Thank you!
I fixed this bug by adding
Code:
tr.summary-total { cursor: pointer; } tr.summary-total .summary-collapse { float: right; padding: 0px 0 0 15px; background: url(../images/bg_collapse.gif) 0 4px no-repeat; cursor: pointer; } tr.show-details .summary-collapse { background-position: 0 -53px; }
in /skin/frontend/default/jm_painite/css/theme.css
Thanks Netbuilder for your fix. You could also try this way:
Go to /skin/frontend/default/jm_painite/css/theme.css and then replace class ".tax-total" with "tr.summary-total".
Regards!