I want to take the breadcrumb text off the Navigation header bar and have it sit below the grey bar and restyle it in black text. I have edited the header.php by creating a new table as shown in code below
<table border="0" width="468" cellspacing="0" cellpadding="1">
<tr class="headerNavigation">
<td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> &nbsp;|&nbsp; <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> &nbsp;|&nbsp; <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> &nbsp;|&nbsp; <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> &nbsp;&nbsp;</td>
</tr>
</table>
<table border="0" width="468" cellspacing="0" cellpadding="1">
<tr class="main">
<td "align left" class="main">&nbsp;&nbsp;<?php echo $breadcrumb->trail(' &raquo; '); ?></td>
</tr>
</table>
Only the >> appear in black but not the text I think the text is still white the because the links still work.
I've tried changing the style sheet by creating the following
TR.main {
background: #ffffff;
}
TD.main {
font-family: Verdana, Arial, sans-serif;
font-size: 10px;
color: #000000;
}
A.main {
color: #000000;
}
A.main:hover {
color: #000000;
}
any suggestions?
James





LinkBack URL
About LinkBacks






Bookmarks