I have been forced to work with some very poorly written CSS and I am not allowed to change it, only override its settings.
The issue is that it has something like this:
.some_div{ width: 10% !important; }
However, I need it to do the width in pixels, not percentage. SO, when I try to do the following:
.some_div{ width: 146px; }
There is no change. Even if I add an '!important'.
Does anyone know a good trick to override the % setting so I can use PX?