Viewing 3 replies - 1 through 3 (of 3 total)
  • It looks like there is an icon div in the header with pseudo element ::before that is causing your problems. The current css is:

    article.page .format-icon:before {
    content: "\1F4C4";
    font-size: 3em;
    line-height: 0px;
    position: relative;
    top: 14px;
    }

    Either find this in your original css and change the value of the font-size to 1em or add this to your child theme style sheet:

    article.page .format-icon:before {
    font-size: 1em;
    }

    That will uncover the “Home” breadcrumb.

    Yes, this is a known bug in 3.1.6

    There’s a workaround here.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Breadcrumbs not working, covered by page icons’ is closed to new replies.