I have the element.style 'margin-left: 0;' on one of my ul classes. I would like to get rid of it but I can’t change the js file without messing everything up so I’m wondering if there is a way to disable this in my CSS? Thanks in advance.
I have the element.style ‘margin-left: 0;’ on one of my ul classes. I would
Share
In your CSS just do
That will work most of the time, provided it’s the last stylesheet to be loaded, otherwise it might be overridden by a different style again.