Icon removal

Options
Matt Charles
Matt Charles Member Posts: 6
First Comment First Anniversary

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.

Comments

  • KurtJ
    KurtJ Member Posts: 45
    Name Dropper Photogenic First Anniversary First Comment
    edited June 2022 #2
    Options

    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;

    }

     

     

  • BrodyS
    BrodyS Member Posts: 1
    Name Dropper First Comment
    Options

    @KurtJ

    Hi Kurt,

    Are you able to provide the CSS code to hide other icons? Such as:

    • Leads
    • Deals
    • Projects
    • Activities
    • Insights
    • Marketplace

    Thank you!