Showing 2 Result(s)

Magento – add CSS / JS per category or CMS page

Here’s a very simple solution to adding custom CSS or JS to a specific category or CMS page . The example below shows how to add a reference to a custom CSS file, let’s name it custom.css and assume that we’ve copied it in /skin/frontend/default/your_theme/css. The CSS file inside would look something like (just an example): .category-description { …

Magento: hide tax summary from cart/checkout

Magento displays tax summary in cart and checkout by default: You may not always want this to show and there is a simple method of hiding the tax section in cart by making the following changes: – go to /app/design/frontend/base/default/template/tax/checkout/tax.phtml – copy this template file to your theme folder eg. /app/design/frontend/default/customtheme/template/tax/checkout/tax.phtml – uncomment the following code …