I am having trouble applying a style that is !important
. I’ve tried:
$(\"#elem\").css(\"width\", \"100px
I had the same problem trying to change a text color of a menu-item when "event". The best way I found when I had this same problem was:
First step: Create, in your CSS, a new class with this purpose, for example:
.colorw{ color: white !important;}
Last step: Apply this class using the addClass method as follows:
$('.menu-item>a').addClass('colorw');
Problem solved.