Thread Starter
bustel
(@bustel)
okéy, i set breadcrumb to breadcrumbs… but it’s the same thing, it doesn’t work…
so in the style.css:
.breadcrumbs {
background-color:#FFFF19;
}
and in the header.php:
<div class=”breadcrumbs”>
<?php if(function_exists(‘bcn_display’))
{
bcn_display();
}?>
</div>
Hey, i’ve tried the plugin in a clean WordPress install and it’s working fine like u mentioned it. Try setting the element’s display to block , maybe there’s a conflict with another css rule.
Anyway, is your code inside the <body> or <header> tags?
Regards
Thread Starter
bustel
(@bustel)
yes, it’s under the <body> in header.php file
and its above <div id=”main”>
If I change the name of breadcrumbs to another word… it’s the same problem… I don’t know what the problem is… Can you help me please?
thanks!
Well .. I think it’s not the proper way but u could try doing it like this :
<div class="breadcrumb" style="background: #FFFF19; display: block; float: left; clear: both; height: auto; width: auto; min-width: 0; padding: .5em 1em; overflow: hidden">
<?php (function_exists('bcn_display') ? bcn_display() : false ); ?>
</div>
Thread Starter
bustel
(@bustel)
great it’s working! thanks!