If you simply need to overwrite the default, have you tried using the !important tag at the end of a custom style?
Example, if the element is
you can add a style that goes like this:
.SoveDiv {
white-space: none !important;
}
Although you may need to find the right value, the !important will overwrite the existing value. Hope that helps!