By Richard on Thursday, 07 November 2013
Posted in General Issues
Replies 5
Likes 0
Views 1.1K
Votes 0
The breadcrumbs background has changed to white and is also showing the wrong information, in this case the wrong user but it can also be the wrong (for example) article title.

I think it happened when I installed jGive as there was a similar error in the toolbar, fixed in ES issue #1087 by removing !important from a number of lines of code in /components/com_jgive/assets/css/jgive.css

I don't know if it is all the same problem (or not) or if just the background is and the content errors are due to the upgrade to Joomla 3.2 a few hours ago, or it is something else.

Breadcrumbs image = http://www.screencast.com/t/vQTNRWxaJh
Hello Richard,

Sorry for the late reply, please add this css to your site to remove the white background color on your breadcrumb.

.ja-navhelper .container ul.breadcrumb {
background-color: transparent !important;
}


To remove your username from breadcrumb please set this to no.
Screenshot --> http://screencast.com/t/j4F8z8yxHr4F

Please do not hesitate to contact us by replying to this email if you need further assistance.

Thanks:)
·
Thursday, 07 November 2013 14:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Khairul,

I added the code to the template custom css but no change so I went back to ES #1087 (a similar white ES toolbar issue):

The toolbar solution was:

This is because JGive using aggressive styling to reset the toolbar background color. You will need to open this file /components/com_jgive/assets/css/jgive.css
change from
.navbar-inner {
padding-left: 0px!important;
padding-right: 0px!important;
padding-top: 0px!important;
padding-bottom: 0px!important;
background: none!important;
}
to
.navbar-inner {
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
background: none;
}


I went back to the /components/com_jgive/assets/css/jgive.css file and removed !important from the following code:

.breadcrumb{
background-color:white !important;
}

and the white background disappeared.

I also removed:

.ja-navhelper .container ul.breadcrumb {
background-color: transparent !important;
}

from the template custom css.

I also changed the 'include blogger name' to no as you suggested.

However the problem of the breadcrumbs path not being correct (see first line of my original post) remains, it seems to get 'stuck' on the first page I go to and not reflect the new path when going to a new page, any thoughts?
·
Thursday, 07 November 2013 21:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Richard,

Sorry for the late reply, your breadcrums module is behaving as such is because of the caching that occurs and display the informating that was last cache on the breadcrum module, we have disable the caching on your module and it is working now. We also enable "Show blogger name in breadcrumbs" again.

Thanks:)
·
Friday, 08 November 2013 21:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect Khairul, thankyou!
·
Friday, 08 November 2013 21:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Richard,

You are most welcome. Glad that your issue is solved.

Thanks!
·
Saturday, 09 November 2013 01:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post