Aramaech Posted April 6, 2017 Share Posted April 6, 2017 I'd like to utilize the theme's custom css (admin cp > customization > themes > edit custom html and css > custom.css ) to remove the breadcrumbs from the top of the forum's front page only. Forums are the default app, and I'd like to keep the breadcrumbs everywhere but the top of the main front forum page. This is the code I have so far, but it's removing the breadcrumbs from all pages top and bottom: /* Remove Breadcrumbs from Front Page */ .ipsApp_front .ipsBreadcrumb { display:none; } Link to comment Share on other sites More sharing options...
TAMAN Posted April 6, 2017 Share Posted April 6, 2017 body[data-pagemodule="forums"][data-pagecontroller="index"] .ipsBreadcrumb.ipsBreadcrumb_top{display:none} Link to comment Share on other sites More sharing options...
Aramaech Posted April 7, 2017 Author Share Posted April 7, 2017 Thank you sir! Link to comment Share on other sites More sharing options...
Bliss99 Posted January 28, 2018 Share Posted January 28, 2018 On 4/5/2017 at 8:53 PM, TAMAN said: body[data-pagemodule="forums"][data-pagecontroller="index"] .ipsBreadcrumb.ipsBreadcrumb_top{display:none} I would love to do the same thing with the home page of our site. The Page Filename is "home". It is the default page in the PAGES app that make this page show up as the home page. When I use the following codes, neither work/remove the breadcrumbs. What should it be instead? /* Remove Breadcrumbs from Front Page */ body[data-pagemodule="pages"][data-pagecontroller="index"] .ipsBreadcrumb.ipsBreadcrumb_top {display:none} /* Remove Breadcrumbs from Front Page */ body[data-pagemodule="pages"][data-pagecontroller="home"] .ipsBreadcrumb.ipsBreadcrumb_top {display:none} Link to comment Share on other sites More sharing options...
TAMAN Posted January 28, 2018 Share Posted January 28, 2018 Just now, Blisslandia said: I would love to do the same thing with the home page of our site. The Page Filename is "home". It is the default page in the PAGES app that make this page show up as the home page. When I use the following codes, neither work/remove the breadcrumbs. What should it be instead? ACP > Pages > Templates > CSS Create a css template and add this .ipsBreadcrumb.ipsBreadcrumb_top{display:none} then edit the "home" page, On the "Page Includes" tab select the css template you created Link to comment Share on other sites More sharing options...
Bliss99 Posted January 28, 2018 Share Posted January 28, 2018 39 minutes ago, TAMAN said: ACP > Pages > Templates > CSS Create a css template and add this .ipsBreadcrumb.ipsBreadcrumb_top{display:none} then edit the "home" page, On the "Page Includes" tab select the css template you created Thank you, I created the CSS, copied the code addition, but I don't see a "page includes" tab here when I edit the home page. Link to comment Share on other sites More sharing options...
TAMAN Posted January 28, 2018 Share Posted January 28, 2018 The "Page Includes" tab may only appear if you have created css or js templates so make sure you have created the css template here ACP > Pages > Templates > CSS Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.