Any way I can move the breadcrumbs to right above the footer instead of below the header?
Want to keep the top part of the site clean and simple, not cluttered with this kind of info. However, I do want it visible on the page, so right above the footer would suit me best.
Hi,
To remove the header breadcrumbs, edit function-enfold.php, find this code
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
Replace it with:
//if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
Edit footer.php, find this code
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
Below, add the breadcrumb code
<?php echo avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); ?>
Add this on your custom.css or Quick CSS
.socket_color .breadcrumb {
float: right;
}
Regards,
Ismael