function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
srinivasan14srinivasan14 

How to remove the breadcrumb from the detail page........

Navatar_DbSupNavatar_DbSup

Hi,

 

You can hide the breadcrumb by creating a home component tab.

Follow the below steps for creating a home component.

 

  1. Setup-> Customize-> Home->click on Home Page Components.
  2. Click on new button display in Custom Components
  3. Enter the name and select HTML Area  and click on next button
  4.  Select Narrow (Left) Column as Component Position
  5. Check the Show HTML check box and paste below code

<style>

.bPageTitle .ptBreadcrumb a {    color: #015BA7;    text-decoration: none;display:none;}

</style>

6. Click on save

 

Add the home component on home page layout.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

 

 

 

srinivasan14srinivasan14

In the top most left of the any Detail Page, we will have the name of the record (or) the Record auto number.Below that we will have link  like this  " << Back to List: Accounts ".How to remove this link.

srinivasan14srinivasan14
In the top most left of the any Detail Page, we will have the name of the record (or) the Record auto number.Below that we will have link like this " << Back to List: Accounts ".How to remove this link. ....