Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #858452

    Alex
    Participant

    Hello,

    how can I get the breadcrumps back after I´ve entered this code:

    .x-header-landmark {
    display: none;
    }

    Because I need to hide the logo-section but I need to show the breadcrumps.

    Thank you very much!

    Regards,
    Alex

    #858515

    Paul R
    Moderator

    Hi Alex,

    You can change it to this.

    
    .x-landmark {
       display:none;
    }
    

    If that doesn’t help please provide us your site url so we can take a closer look.

    Thanks

    #858633

    Alex
    Participant
    This reply has been marked as private.
    #858760

    Thai
    Moderator

    Hi There,

    Please provide us with your website URL so we can take a closer look.

    Thank you.

    #861391

    Alex
    Participant
    This reply has been marked as private.
    #861998

    Rupok
    Member

    Hi Alex,

    Thanks for updating. I can’t see any code on your customizer that’s hiding the breadcrumbs. Did you change anything on your Child Theme to remove that?

    Let us know.

    Cheers!

    #862101

    Alex
    Participant

    Hey,

    no I didn´t change anything. I only made the customisations you see above or in custom global CSS.

    Regards,
    Alex

    #862326

    Paul R
    Moderator

    Hi Alex,

    Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    This is how your breadcrumbs looks on my end – http://screencast.com/t/YOFEvXhF2iXT

    Thanks

    #862347

    Alex
    Participant

    Hello,

    when you click through the main navigation there are pages and subpages.
    On this pages the breadcrumps should be shown. But they are not visible.

    Thanks and regards,
    Alex

    #863057

    Rad
    Moderator

    Hi Alex,

    Your breadcrumbs are hidden since your page titles are disabled. For example, I went ahead and enabled page title for this http://dev.donaufreunde-ulm.de/faq/

    That setting is available under Page settings section when you edit it.

    Thanks!

    #871430

    Alex
    Participant

    Ah okay. That was it!
    Thank you!

    I have another issue:
    How can I change page title and breadcrumps so that the breadcrupms are on the left side?
    And on this page: http://dev.donaufreunde-ulm.de/gesellschaft/vorstandbeirat/
    the breadcrumps are in two lines. How to fix it the way that they are in only one line?

    Thank you very much for your great support!!

    Kind Regards,
    Alex

    #872257

    John Ezra
    Member

    Hi Alex,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    .x-landmark {
        width: auto;
        float: left;
    }
    
    .x-breadcrumbs-wrap {
        width: auto;
        text-align: left;
        display: inline-block;
    }

    Hope this helps – thanks!