Hi Jade,
The code I used to add the links to the nav bar, created a gap between the nav bar and the columns. Do you know what might cause that and how to fix it?
Here is a link to my site: www.allk-9.com
Here is the code:
Code:
<!--bof-view cart and checkout now links-->
<div id="your new div">
<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-->
One more thing... :-). On some pages there are yellow edges around my search box. Click on the Shipping Information link or Return Policy link and look at the search box at the top of the left column. You will see a yellow edge around the box. Do you know why that is and where/how to remove the yellow?
Thanks!