Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Header configuration & styling (http://forum.bytesforall.com/forumdisplay.php?f=15)
-   -   trying to put breadcrumbs in the header (http://forum.bytesforall.com/showthread.php?t=612)

awisher Mar 2, 2009 09:26 AM

trying to put breadcrumbs in the header
 
on my site I am using the Yoast breadcrumbs plugin, which places breadcrums, currently, at the top of the index.php template. However, I would rather it be located either right justified in the top menu bar or in place of the RSS placement above the search box. Is this possible? I cannot seem to figure out how to place the code.

I am using 3.2
code that needs to be inserted:
Code:

<?php if ( function_exists('yoast_breadcrumb') ) {
        yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>

my website is here: www.rockpatch.net

I've looked in the Atahualpa templates and coulnd'nt see how to do this, nor could I find a local place for this in the config interface.

Thanks for any help you can suggest.
Aaron

Flynn Mar 2, 2009 01:47 PM

I'd recommend to put it into header.php after

PHP Code:

<?php bfa_header_config($cur_opt['bfa_ata_configure_header']); ?>

to put it below the header, or into index.php after

PHP Code:

<?php get_header(); ?>

to put it at the top of the middle column

and style it through HTML/CSS Inserts -> CSS Inserts

HTML Code:

p#breadcrumbs {
display: block;
text-align: right;
... other styles ...
}


awisher Mar 2, 2009 03:34 PM

That is where it already is currently. I want to replace the rss link (above the search box) with the breadcrumbs.


All times are GMT -6. The time now is 05:56 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.