Tagged: breadcrumbs, enfold
Hi there,
I was wondering whether is there a way to customise the Breadcrumb text and changing the “You are here:” to something else or even to move the location of the Breadcrumb to another location via the advanced editor? Please assist. Thanks.
Regards,
Robert Chai
Hey sgrobert!
You can edit framework > php > class-breadcrumbs.php, find this codes on line 26:
echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';
and 186:
'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
You can modify the breadcrumb text using this on Quick CSS:
.title_container .breadcrumb {
z-index: 10;
line-height: 15px;
font-size: 13px;
position: absolute;
right: 0;
top: 50%;
margin-top: -7px;
}
.alternate_color .breadcrumb {
color : red;
}
Cheers!
Ismael
Hi Ismael,
Thanks so much! It has been helpful for the breadcrumbs issue. ;)
Regards,
Robert Chai