Shape 5

Joomla Templates => Sienna - Club => : aagarwal03 June 05, 2015, 11:23:30 PM



: Breadcrumb module not functioning properly
: aagarwal03 June 05, 2015, 11:23:30 PM
I have tried everything for Breadcrumbs to display properly. The "HOME" does not show, and also when I am on other pages, it sometimes shows the breadcrumb path, sometimes it does not show, and the font changes itself when displaying some breadcrumb paths.
http://www.marinetranslogistics.net/

(In case you need it, you have my admin userid and password from a previous ticket private message.)


: Re: Breadcrumb module not functioning properly
: mikenicoll June 06, 2015, 08:58:58 PM
Hello,

You can enable / disable the "Home" display in the Breadcrumb module settings directly. In terms of the different styling on specific pages that is caused by a specific extension or module you have added that is stylizing the breadcrumb path. For the breadcrumbs not showing up they will only appear on pages with a component/article active.

Regards,


: Re: Breadcrumb module not functioning properly
: aagarwal03 June 06, 2015, 10:29:35 PM
1. The breadcrumb does have the setting enabled to display Home, but it does not display Home on home page.
2. My third menu option is "Intermodal Terminals", when I click on it, it goes to that page but the breadcrumb only shows "Home"
http://www.marinetranslogistics.net/


: Re: Breadcrumb module not functioning properly
: mikek June 09, 2015, 07:42:09 AM
Hello,

Try adding the following to custom.css to fix both:

#s5_breadcrumb_wrap .active {
display:block !important;
}


: Re: Breadcrumb module not functioning properly
: aagarwal03 June 09, 2015, 10:29:29 PM
Thank you for the custom CSS code. However, now there is a dropdown-arrow icon above breadcrumb "Home". How can we remove that?
http://www.marinetranslogistics.net


: Re: Breadcrumb module not functioning properly
: mikenicoll June 10, 2015, 01:19:27 AM
Hello,

This coding you added should be set to inline-block not block:

:
#s5_breadcrumb_wrap .active {
     display: block ! important;
}

The icons is part of the breadcrumbs module itself but changing the code to inline-block will move it to the correct leftmost position.

Regards,