Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS inline !important css issue Re: inline !important css issue

#141746
pixelgrid
Participant

a solution is to remove the style attribute all together and then set the width manually if thats the only style you want to apply or add a class with all the styles you want

$(‘.fluid’).removeAttr(‘style’).css(‘width’,’100px’);

im using jquery in the example