Hi, I installed a breadcrumb plugin (from WordPress SEO / Yoast). Therefore I had to add this little piece of code to the template:
<?php
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('','');
}
?>
I added it to header.php. But when I add it to the bottom of the file it works, but then the sidebar goes missing (moves to the bottom of the left column). I added the code higher in the php-file, but now the breadcrumbs are placed straight to left border of the page (not nice). Any idea what is the best place to add this code?
I know this is not your code, but breadcrumbs are very important for me (and for Google, so for everybody), so if you can help I would be very happy.