Tagged: Blog, breadcrumbs, header
I’d like to enable the Header option to display both page titles and breadcrumbs across the site. But most blog post titles and breadcrumbs ram into each other. Example:
https://dl.dropboxusercontent.com/u/5660/Scratch/Enfold%20title%20collision.png
Is there a way I can enable this option, but *disable* breadcrumbs on individual blog posts? Thanks!
Hi David!
Thank you for using Enfold.
You can add this on QuickCSS or custom.css to hide the breadcrumb on single posts:
.single .title_container .breadcrumb {
display: none;
}
Regards,
Ismael
Ok thanks for this. Is it something you might be able to fix in an update? Maybe breadcrumbs could wrap in their own block to the right of the page title on desktops, and underneath the title on mobile? It feels like they shouldn’t be ramming together like this.
Hi!
Can you post the link to your website please? We may recommend a workaround if we can see the issue
Best regards,
Yigit
For now I copied our site to our staging area, so here’s the main site:
http://tooagile.staging.wpengine.com
and a good blog post example where the breadcrumbs ram up to the page title:
http://tooagile.staging.wpengine.com/2014/10/27/1password-5-mac-mini-menubar-shortcuts/ (hosted on WPengine)
Thanks for checking into this!
Hi!
Please try using following code
.title_container .breadcrumb {
right: auto;
top: 76%;
left: 46px;
}
Best regards,
Yigit
Thank you for this. I think we’re getting closer but the breadcrumbs now mash into the bottom of the page title. Examples:
https://www.dropbox.com/s/fillkyxbsjvz0xa/Photo%20Nov%2007%2C%203%2033%2042%20PM.png?dl=0
https://www.dropbox.com/s/26k859yuhqnznwp/Photo%20Nov%2007%2C%203%2033%2049%20PM.png?dl=0
Hey!
replace code with:
.title_container .breadcrumb {
right: auto;
top: 95%;
margin-top: 10px;
left: 46px;
}
Regards,
Andy