Can I change the background color of the Dropdown title?

Can I change the background color of the Dropdown title?

You can change the background color of the Dropdown title with a bit of code:

Go to Page Settings > Advanced > Custom JS and add this below code. Note that this will affect all dropdowns on your page.

  1. .spb-item.type_dropdown .smpb-dropdown-title{
  2.         background-color: #dedede !important;
  3. }

Change #dedede to the color that you want. If you're not familiar with color codes, you can use this tool: https://htmlcolorcodes.com/

When you're done, click Save.