Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #194589

    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

    #194651

    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

    #194670

    Hi Ismael,

    Thanks so much! It has been helpful for the breadcrumbs issue. ;)

    Regards,
    Robert Chai

    #194693

    Hi!

    Glad it worked. :)

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Is There a Way to Customise The Breadcrumbs?’ is closed to new replies.