Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Matteo Russo Posted May 3, 2020 Posted May 3, 2020 Hey there, I need to remove the breadcrumb only on a specific custom page which is not the forum but one created by me with Pages. Is this possible?  Thanks 🙂
bfarber Posted May 4, 2020 Posted May 4, 2020 There are no options/settings to remove the breadcrumb on individual pages.
Matteo Russo Posted May 4, 2020 Author Posted May 4, 2020 1 hour ago, bfarber said: There are no options/settings to remove the breadcrumb on individual pages. Okay, thank you anyway 🙂Â
Meddysong Posted May 4, 2020 Posted May 4, 2020 19 hours ago, Matteo Russo said: Hey there, I need to remove the breadcrumb only on a specific custom page which is not the forum but one created by me with Pages. Is this possible?  Thanks 🙂 You could create a special CSS template which you'll use with that page, and which contains: #ipsLayout_contentWrapper > nav.ipsBreadcrumb.ipsBreadcrumb_top.ipsFaded_withHover { display: none; } #ipsLayout_contentWrapper > nav.ipsBreadcrumb.ipsBreadcrumb_bottom.ipsFaded_withHover { display: none; } When you edit that Page in the ACP, add this CSS file to it using the tab Page Includes. If you do that, this new CSS template you've created will be used on that Page and so hide your breadcrumbs, but it won't be called on any other pages.
Matteo Russo Posted May 4, 2020 Author Posted May 4, 2020 2 hours ago, Meddysong said: You could create a special CSS template which you'll use with that page, and which contains: #ipsLayout_contentWrapper > nav.ipsBreadcrumb.ipsBreadcrumb_top.ipsFaded_withHover { display: none; } #ipsLayout_contentWrapper > nav.ipsBreadcrumb.ipsBreadcrumb_bottom.ipsFaded_withHover { display: none; } When you edit that Page in the ACP, add this CSS file to it using the tab Page Includes. If you do that, this new CSS template you've created will be used on that Page and so hide your breadcrumbs, but it won't be called on any other pages. Thanks for the answer! But in my ACP I don't have this tab when I go editing a page. How do I enable it? 🙂
Meddysong Posted May 4, 2020 Posted May 4, 2020 I suppose that if you haven't yet created any CSS or JS, the tab logically won't appear. You need to create the file first: Pages -- Templates -- Add CSS. (Or something similar.) Matteo Russo 1
Matteo Russo Posted May 4, 2020 Author Posted May 4, 2020 Amazing! Thank you so much 😄 Worked now. This will be also usefull for other little adjustments 😛 Meddysong 1
Recommended Posts