Bread Crumbs on Center

Posted in: Newspaper
Post count: 26

Hello, Can you please help me how to put the Bread Crumbs Navi into Center of my Website? Mobile / Desktop
Breadcrumbs are on the Left side and i want to put it in center. TIA

This one – https://gyazo.com/1e13abd27773f1ee9eeb8bea9b46d5e6

Also, on Homepage, I want to Remove the Main BreadCrumb Text “Blog”

https://gyazo.com/b787ac8b176c5e570c3a23521622b115

My Website – http://bit.ly/rcpnjn

  • This topic was modified 9 years by TrashTalk.
Post count: 22421

Hello,

This can only be done with css. Pleas euse this code to hide the crumbs from the homepage:
.home .entry-crumbs{
display:none;
}

As for the centered crumbs, please use this css code in the theme panel-> custom css box:
.entry-crumbs{
text-align:center;
}

Thank you!

Post count: 26

It’s working, though in mobile,when loading, the text still on the left but once the loading is done, it goes to center. Thanks!

Post count: 26

anyway, why is that mate? The breadcrumbs position is centered on some post only? Tried to Visit some Categories and Pages but the position of the Breadcrumbs still in the Left Side? See this Sample – http://bit.ly/2gAbkzy and this – http://bit.ly/2goFlD6

Please check ty

Post count: 22421

Hello,

It seems the mobile and the category template 7 require special targeting as they will not take into consideration the global css for these elements.
Please replace your previous code with this one:
.home .entry-crumbs{
display:none;
}
.entry-crumbs{
text-align:center!important;;
}
.td-crumb-container{
width:100%!important;
}

Thank you!

Post count: 26

its good and working now. Thank You

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.