Icon removal

Matt Charles
Matt Charles Posts: 5

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
0 votes

· Last Updated -

Comments

  • Kurt Jones_71
    Kurt Jones_71 Posts: 50
    10 Comments Solution Provider
    edited June 2022 #2

    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;

    }