• Resolved rwilkin

    (@rwilkin)


    I’m just having my first go at creating a site using the site version. Although it’s not a feature listed I seem to have breadcrumbs in the page title bar which I’d like to remove. I have tried some CSS:
    .title_container.breadcrumb {display: none;} but this doesn’t seem to work. Very much starting out so I may have got this wrong. Also I’d like to reduce the height of the grey page title block. Is this possible as well?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @rwilkin,

    To hide the breadcrumbs please add this code in Appearance -> Customize -> Additional CSS:

    .pagetitle #breadcrumb {
        display: none;
    }

    And to reduce the height use this code:

    #pagetitle {
        padding: 50px 0;
    }

    Hope this helps! Let me know how it goes.

    Best wishes,
    Mihaela

    Thread Starter rwilkin

    (@rwilkin)

    Thanks for the quick reply.
    The title height change worked a treat but I still have breadcrumbs. Looking at the source its under Section: id= Pagetitle > div:class= container > div: id=breadcrumbs

    Not sure if that helps. I can’t see that I can attach a screenshot to this reply?

    Thread Starter rwilkin

    (@rwilkin)

    Ah, my mistake I’d left the ‘.’ off before Pagetitle.
    Thanks again

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Breadcrumbs’ is closed to new replies.