I'm using a js-widget from a ticket service (OK-Ticket). The container of this widget has an ID, which is generated dynamically. Something like
<li class="okticket">
<div id="ok_5134e2847ffe8">
// The widget stuff
</div>
</li>
Of course I can't overwrite the styles with
.okticket div {
margin:0;
}
I could use !important, but everybody tells you: "Don't use !important". Isn't it the only way to go here?