Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #28040

    Hi,

    In the gray header, where the page title and the breadcrumbs are located,

    is it possible to:

    – Don’t show the page title

    – Align the breadcrumbs left

    – Replace the / symbol between the breadcrumbs by >.

    Thanks a lot in advance

    #136239

    Hi theuptimizers,

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .title_container .main-title {
    display: none;
    }
    #top .title_container .breadcrumb {
    left: 0;
    }

    Then in the theme files open and change framework>php>class-breadcrumb.php:

    'delimiter' => '»'

    Just change the entity name that you want to use which I believe is > .

    Regards,

    Devin

    #136240

    Hi Devin,

    I used the css as you suggested above

    .title_container .main-title {

    display: none;

    It worked for the English pages but not for my Hebrew (rtl) translations.

    What do you suggest?

    Thanks, Jonathan

    #136241

    Hi Devin,

    Thanks for your quick response. The first part worked, the title is gone and the breadcrumbs are aligned left. Already a big thanks for this!

    But the second part won’t work. The delimiter does not change and always stays “/”

    Thanks,

    Bjorn

    #136242

    Hey,

    Edit functions-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));

    Regards,

    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Header question’ is closed to new replies.