I am using the CMS called WebsiteBaker, now I wrote a module for it, a droplet, that uses it's own CSS. It seems to be that the CSS of the droplet cannot be overriden by the main CSS.
I assume that's because the droplet (and along with it, the css) is loaded after everything else. And I cannot just modify the CMS files as workaround, as it's a module.
Any ideas for a workaround or something similar?
--
Main CSS (override attempt, included in the header)
#programma_tab {
width: 300px;
}
Droplet CSS Example (included in the body, there is no other way)
#programma_tab {
padding: 5px;
font-size: 12px;
margin-top: -15px;
width: 200px;
}