Icon removal
Matt Charles
Member Posts: 6 VERIFIED MEMBER
How can i remove icons i don't want, such as mail and campaigns? I have no intention of upgrading, and would like the clutter removed.
0
Comments
-
Install this chrome extension:
https://chrome.google.com/webstore/detail/user-css/okpjlejfhacmgjkmknjhadmkdbcldfcb?hl=en
Go to Pipedrive and open the extension and add the CSS below. This will hide email and the smart contact data box.
/*** HIDE THE SMART CONTACT DATA BOX ***/
.sdContainer {
display: none;
}
[data-target="invoice"] {
display: none !important;
}
/*** HIDE EMAIL ***/
[data-target="email"] {
display: none !important;
}
[data-target="document"] {
display: none !important;
}
[data-test="navbar-item-mail"] {
display: none;
}
.descriptionHead H1{
font-size: 36px !important;
}
0