by loren_d_c » Thu Oct 02, 2008 10:12 am
All of ShopSite's default shopping cart templates use template Include files for the CSS, so you just need to look at the template to see what file(s) are being included for CSS then go to the Merchandising -> Custom Templates -> Includes menu and use the Copy ShopSite Include to get a copy of that include file in your own list of custom template includes so that you can examine/edit it.
For example, in the 'sc_default' shopping cart template, the DEFINE ShoppingCart section is using the tag [-- INCLUDE sc_cart.css PROCESS --] to include the content of the file sc_cart.css in the source of the initial shopping cart page. The other sections of this particular template include a different include file specific to that cart screen, although some cart templates may just use the same css include file in each section.
Also note that you shouldn't necessarily need to edit the ShopSite include file with the default CSS, you could just include your own CSS for whatever classes you want to change right after the [-- INCLUDE --] tag in the shopping cart template that pulls in the default CSS, whatever definition comes last should override any earlier definitions for the same class and be what is in effect when the class is actually rendered by the browser.
-Loren