Hi Jade,

Also, how would I do this without the ul? I have class forward because I want the links separated from the other links. And I don't really want the li, I just don't know how to change it.

Code:
 
<!--bof-view cart and checkout now links-->   
 <div id="ezLinks">
    <ul class="forward">
      <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
      <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>  |  
      <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a>
      <?php }?>
    </ul>
    </div>
<!--eof-view cart and checkout now links-->
Thanks!