Hi,
In the gray header, where the page title and the breadcrumbs are located,
is it possible to:
– Don’t show the page title
– Align the breadcrumbs left
– Replace the / symbol between the breadcrumbs by >.
Thanks a lot in advance
Hi theuptimizers,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.title_container .main-title {
display: none;
}
#top .title_container .breadcrumb {
left: 0;
}
Then in the theme files open and change framework>php>class-breadcrumb.php:
'delimiter' => '»'
Just change the entity name that you want to use which I believe is > .
Regards,
Devin
Hi Devin,
I used the css as you suggested above
.title_container .main-title {
display: none;
It worked for the English pages but not for my Hebrew (rtl) translations.
What do you suggest?
Thanks, Jonathan
Hi Devin,
Thanks for your quick response. The first part worked, the title is gone and the breadcrumbs are aligned left. Already a big thanks for this!
But the second part won’t work. The delimiter does not change and always stays “/”
Thanks,
Bjorn