Is it possible to change the block properties in jquery-ui.css. I am changing the values in the jquery-ui.css file
.ui-resizable { position:relative; } on position: static, unchanged.
Is it possible to change the block properties in jquery-ui.css. I am changing the values in the jquery-ui.css file
.ui-resizable { position:relative; } on position: static, unchanged.
At the very beginning you should not change, because the rules of styles are cascading - the lower ones interrupt the higher ones.
If you want a beautiful style file, then you need to experiment: change at the very end, for example. And even better to calculate where it is affixed - probably not in one place.
If nothing helps, then you can add importance to the rule by writing this:
.ui-resizable { position:relative !important; }