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
Hey cthai!
Please refer to Elliott’s post here – https://kriesi.at/support/topic/breadcrumb-w-shortcode-only-appears-if-header-no-transparency/#post-469042
Regards,
Yigit
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
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!
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
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