1T - dropdown how to change background color

Hi everyone,
I know this is such a basic question but…
So recently i bought the 1 T - dropdown plugin. Watched his videos and read documentation. But i still can not figure out how to change the background color. I tried adding the CSS code to the page and assign id to the dropdown element. Still doesn’t work. I’m sure I’m just trying to add it in the wrong place. I know there is simple solution that my brain doesn’t yet know about.
Any help would be appreciated
dropdown
dropdown1

1 Like

Hi @abalakinam ,

Here you have a CSS to make the background transparent:

<style>
  /* Aplica al componente visible */
  #ss-7oql3set {
    background-color: transparent !important;
  }

  /* Alternativamente, aplica a todos los dropdowns de la clase slim-dropdown */
  .slim-dropdown {
    background-color: transparent !important;
  }
</style>