How can I re-force my elements back to left align as jquery blockui plugin is forcing them to center,
I tried this so far,
$.blockUI({ message: $('#popup'), css: { text-align: 'left' } });
How can I re-force my elements back to left align as jquery blockui plugin is forcing them to center,
I tried this so far,
$.blockUI({ message: $('#popup'), css: { text-align: 'left' } });
Using the CSS hack
!important
should do the trick. Into your CSS file addAs this should override any other CSS rules imposed upon that element (unless, of course, there are other CSS rules targeting this element also using the
!important
hack.You should use camelCase synthax maybe it's just enough:
Or using quotes:
Maybe you would have to force it using
!important