
Originally Posted by
gsdcypher
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-->
First things first, the code above is not the code you currently have on your website, the code on your website needs some serious cleanup, and the code above needs some tweaking as well. "your new div", is not a valid css name, you need to give a name, and then if you are using <ul>, there needs to be <li>'s as well. Here is the code above cleaned up:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>|
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Here is the code you're using currently, all cleaned up:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<li><a href="http://www.allk-9.com">Home</a></li>|
<li><a href="account/login.html">Order Tracking</a>|</li>
<li><a href="log-off.html">Logoff</a>|</li>
<li><a href="pages/faq-pv-c0-11.html">FAQ</a>|</li>
<li><a href="contact_us.html">Contact Us</a></li>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Then in your css change #navEZPagesTop to this:
Code:
#navEZPagesTop {
font-weight:bold;
width:100%;
height:25px;
}
change #navEZPagesTop a to this:
Code:
#navEZPagesTop a {
padding:0 8px;
}
and add this to your css:
Code:
#ezLinks ul li {display:inline;}
Then once that is fixed, we can look into the gap.

Originally Posted by
gsdcypher
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!
That's probably the IE autofill feature. Are you using the google toolbar also?
Bookmarks