Jump to content

Remove "Add to basket" green button from front page


Recommended Posts

CSS Hack - You should probably use d0m1n1k's code

1. Open your global.css file
2. Search for '/* Special style for block accessories in center column (product page) */' (No quotes ;) )

Above the highlighted text, You will see this code:

#center_column .products_block a.button, #center_column .products_block a.exclusive, #center_column .products_block span.exclusive {
   margin: 0.5em auto;
}



Replace it with:

#center_column .products_block a.button {
   margin: 0.5em auto;
}

#center_column .products_block a.exclusive, #center_column .products_block span.exclusive {
   display: none;
}



That should do it.

Link to comment
Share on other sites

  • 7 months later...
×
×
  • Create New...