This is what should be displayed within your shopping_cart.php file found in your boxes folder
Code:
$info_box_contents = array();
$info_box_contents[] = array('text' => '<font color="' . $font_color . '">' . BOX_HEADING_SHOPPING_CART . '</font>');
new $infobox_template_heading($info_box_contents, tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'), ((isset($column_location) && $column_location !='') ? $column_location : '') );
Replace it with:
Code:
$info_box_contents = array();
$info_box_contents[] = array('text' => '<a class="cart_nav" href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . BOX_HEADING_SHOPPING_CART . '</a>');
new $infobox_template_heading($info_box_contents, tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'), ((isset($column_location) && $column_location !='') ? $column_location : '') );
Then add the following into your stylesheet found in templates/2051_bdsm/
Code:
a.cart_nav {
font-weight:bold;
font-size:12px;
color:#FFFFFF;
padding:4px;
text-decoration: none;
}
That should do it for you..