if you want to show breadcrumbs link then add this code in each page’s of which you wants to show breadcrumbs trails source :
<div class="breadcrumbs">
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
I used it in InfoIncrement
i put the links in my :
single-post.php
archieve.php
category-template.php
Hi sorry, maybe I wasn’t clear. I actually got the plug-in to work on the pages I want, but My question is, how do you set the font formats of the tabs for parent pages in the breadcrumbs.
For example
My page now has “Home> Products” on the top
In my style.css sheet, I set the font color of .breadcrumbs to be white. However, this only applies to the “Products” tab on the page and the “Home” tab linking to the homepage is still black. What do I need in my stylesheet to change the font color of the “Home” tab (parent page)?
Thank you.
You need to remember that Home and Products are links, so you need to set the color for the anchor tag separately (select a combination of the .breadcrumbs and the a tag). This is a CSS thing.
-John Havlik