TheSkyLounge.tv Posted January 18, 2017 Share Posted January 18, 2017 I'd like to clean up some clutter by removing the breadcrumb, is this possible? See top of image: Link to comment Share on other sites More sharing options...
AlexWebsites Posted January 18, 2017 Share Posted January 18, 2017 Yes you can with custom CSS to hide the element like display: none; Link to comment Share on other sites More sharing options...
simonle Posted January 18, 2017 Share Posted January 18, 2017 Yes, with this code: .ipsBreadcrumb.ipsBreadcrumb_top { display: none; } Link to comment Share on other sites More sharing options...
TheSkyLounge.tv Posted January 18, 2017 Author Share Posted January 18, 2017 @simonle sir thank you very much! Worked beautifully . Link to comment Share on other sites More sharing options...
sudo Posted January 20, 2017 Share Posted January 20, 2017 Just to say using display: none; on link elements is kind of a bad idea as google *can* be pretty hard on extensive use as they consider it hidden content and possibly black hat seo tricks. I would be careful about doing this tbh. Link to comment Share on other sites More sharing options...
Wonster Posted March 7, 2017 Share Posted March 7, 2017 On 1/19/2017 at 0:08 AM, simonle said: Yes, with this code: .ipsBreadcrumb.ipsBreadcrumb_top { display: none; } Can be done for one page only? I want to remove it from the landing page Link to comment Share on other sites More sharing options...
simonle Posted March 9, 2017 Share Posted March 9, 2017 On 2017-03-07 at 9:14 PM, amator said: Can be done for one page only? I want to remove it from the landing page Well, you could add the CSS code inside the html page that is your landing page: <style type="text/css"> .ipsBreadcrumb.ipsBreadcrumb_top { display: none; } </style> Link to comment Share on other sites More sharing options...
Wonster Posted March 9, 2017 Share Posted March 9, 2017 Thanks! it worked Link to comment Share on other sites More sharing options...
sweethoney Posted March 12, 2017 Share Posted March 12, 2017 if you just want to remove the forums title just from the homepage header you can just add this it will only remove the forums and not from the breadcrumbs add to css body[data-pagemodule="forums"][data-pagecontroller="index"] .ipsPageHeader{ display: none; } Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.