Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #469487

    Hi there,

    I noticed that the breadcrumb doesn’t show on a page when I select the transparent header option under the layout box. I have the breadcrumb selected also under the layout box and it appears fine when I don’t select the transparent header option. I pasted the URL of the page I’m testing the breadcrumb.

    Thanks

    #469516
    #469546

    Thanks, Yigit. I commented out the line that Elliot mentioned in the post, and the breadcrumb appears. However, I cannot find the CSS for the breadcrumb element to target and style it. It’s currently stuck at the top.

    Thanks

    #469550

    Hey!

    Can you please elaborate on the changes you would like to make?

    Cheers!
    Yigit

    #469571

    I would like to move the breadcrumb down so that it is underneath the menu rather than at the very top of the window. As well, I would like to remove the Title and the background color.

    Thanks!

    #470178

    Hey!

    use this code to control breadcrumb position:

    .breadcrumb-trail {
    position: relative;
    top: 50px;
    }
    

    To remove page title:

    .title_container .main-title {
    display: none;
    }
    

    Which background color are you referring to? you can choose any background color in the Styling settings of the theme.

    Best regards,
    Andy

    #470191

    Hey!

    You can try this in the Quick CSS field:

    .title_container {
      background-color: transparent;
      top: 80px;
      position: fixed;
      z-index: 1000;
      width: 100%;
    }
    
    .title_container .main-title {
      display: none;
    }
    
    .header-scrolled + #main > .title_container {
      display: none;
    }

    Best regards,
    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.