Quote Originally Posted by minute View Post
Hello, I am using zencart 1.3.7 and I have a problem because I cannot add links to the navigation links in tpl_header, I can add but it does not look the same as the rest. you can see in www.dotari-saloane.ro the links "Catalog" is not the same as the rest .. Home etc... I did what the FAQ said here: https://www.zen-cart.com/tutorials/i...hp?article=234 and add after

<li<?php echo (($current_page_base == 'shopping_cart') ? ' class="cart current">' : ' class="cart">');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_CART_CONTENTS . '</span>'; ?></a></li>

This :

<li><a href="http://www.dotari-saloane.ro/catalog.pdf" target="_blank">Catalog</a></li>
</ul>

But, as you can see, the result is not as I expected.

Thanks!
You simply forgot the span tags

try making the highlighted corrections

<li><a href="http://www.dotari-saloane.ro/catalog.pdf" target="_blank"><span>Catalog</span></a></li>