Hi,
I am wanting to add links to the navbar in [a copy of] fallback_html.
Are you able to let me know what files to edit ?
Thanks
Hi,
I am wanting to add links to the navbar in [a copy of] fallback_html.
Are you able to let me know what files to edit ?
Thanks
Which bit are you calling the "navbar"? If you mean the tabs at the top then look in main_page.tpl.php ... if you mean the categories infobox then look in catalog/includes/boxes/categories.php
Regards.
pgmarshall
_______________________________
Hi,
I mean the breadcrumb navigation bar [eg. Top > Catalog etc]....I want to add links to the right hand side of that bar.
Thanks
Then open main_page.html and edit the table that contains the breadcrumb.
Add another <td> after the one containing {breadcrumbs} and add your links.
Regards,
pgmarshall
_______________________________
Okay, will do....many thanks![]()
Hi,
Any chance you could take a look at this code...it doesn't seem to keep the breadcrumb class and background image in the navigation.
ThanksCode:<table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="headerNavigation"> <td class="breadcrumb_left" width="5">{pixelseparator}</td> <td class="breadcrumb">{breadcrumbs} <td style="float:right;" <a href="http://google.com">Google</a></td> <td style="float:right;" <a href="http://google.com">Google</a></td> <td style="float:right;" <a href="http://google.com">Google</a></td> </td> <td class="breadcrumb_right" width="5"> </td> </tr> </table>
Try:
Code:<table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="headerNavigation"> <td class="breadcrumb_left" width="5">{pixelseparator}</td> <td class="breadcrumb">{breadcrumbs}</td> <td class="breadcrumb" align="right"> <table> <tr> <td><a href="http://google.com">Google</a></td> <td><a href="http://google.com">Google</a></td> <td><a href="http://google.com">Google</a></td> </tr> </table> </td> <td class="breadcrumb_right" width="5"> </td> </tr> </table>
pgmarshall
_______________________________
Works perfect...many thanks
Bookmarks