Configurable List Widget: Hiding the "+" button

  • sclark1982
    Asked on November 22, 2016 at 9:52 AM
    Another issue I am having trouble with is I am trying to remove the + button from the Configurable list widget. Is this possible?
  • Jan
    Replied on November 22, 2016 at 11:17 AM

    Please insert this CSS code inside the Configurable List widget:

    .remove {
       display: none !important;
    }

    Here's a guide on how to insert a CSS code inside the widget:

    1. Select the widget field and then click the wand icon.

    Configurable List Widget: Hiding the + button Image 1 Screenshot 30

    2. Go to the "Custom CSS" tab and paste the code there.

    Configurable List Widget: Hiding the + button Image 2 Screenshot 41

    3. Click the "Update Widget" button when you're done.

     

    Hope that helps. Thank you.

  • Jan
    Replied on November 22, 2016 at 5:54 PM

    I apologize, I misread your issue. I thought it is the "x" or "remove" button. Please use this CSS code instead:

    .add {
      display: none;
    }

    This will remove the "+" or "add" button. Thank you for understanding.