Part of the solution was to switch to Breadcrumb NavXT in an effort to eliminate having the breadcrumb trail go vertical, instead of horizontal. But, switching hasn't worked ... the images attached to the original thread are still valid.
What I've done:
0. Deactivated and deleted Yoast's breadcrumb plugin. Installed and activated Breadcrumb NavXT Administration Interface version and left it at its default settings.
1. Here is the code that I inserted into bfa_header_config.php, starting at line 21 -- this was code suggested to from that earlier thread:
Code:
if ($bfa_ata['levels_page_menu_bar'] == "") { $bfa_ata['levels_page_menu_bar'] = 0; } $page_menu_bar .= bfa_hor_pages($bfa_ata['sorting_page_menu_bar'], $bfa_ata['levels_page_menu_bar'], $bfa_ata['titles_page_menu_bar'], $bfa_ata['exclude_page_menu_bar']); // 7 lines of code and comments below added on 6/15/09 by DPH to add breadcrumbs to the Page Menu bar if (function_exists('bcn_display')) $page_menu_bar .= '<li class="breadcrumb">Your breadcrumb trail: »'; { // Display the breadcrumb ob_start(); bcn_display(); $bcn_display = ob_get_contents(); ob_end_clean(); } $page_menu_bar .= $bcn_display; $page_menu_bar .= '</li></ul></div>' . "\n"; // END of Page Menu Bar
Shedfed was kind enough to send me the CSS Insert that adjusted the line for him so that it displayed properly on his Page Menu Bar -- of particular importance is the "display: inline" instead of the Page Menu Bar's default of "display: block"
Code:
#breadcrumb {float: right; padding: 4px 5px 4px 5px; margin-top: 0px; font-size: 75%; margin-right: 5px; background-color:#FFFDDD; color: #FF000;} #breadcrumb a {display: inline; border: none; padding: 0; text-transform: none;} #breadcrumb a:hover {color: #000099; background-color: #FFFDDD;}
The end result is ... no change.
I downloaded Firebug and started "poking around" and it appears as my CSS Insert is being completely ignored.
I can see the "<li class="breadcrumb"> under: <ul id="rmenu2" class "clearfix rmenu-hor rmenu"> so the class is being recognized. But the colors, for one thing, that I added above don't show up during "inspection" at all and the trail continues to be horizontal.
I cleared the cache, several times, even bounced IIS. And. I went back through changes I'd made in style.css to add underline to the page and category menus and disabled them ... no change.
What could be causing my CSS Insert to be completely ignored? Since the class was declared in the bfa_header_config logic, the above insert seems like it should work ... and is working for Shedfed.
Thank you in advance for any help.