I have two stylesheets: a media="print"one and media="screen". I also have jQuery code that executes when the window is resized by changing the margin-leftdiv.
media="print"
media="screen"
margin-left
Currently this div is to the right when the user is typing. I want to margin-leftalways be zero when the user types.
How could I do this? Thanks in advance!
Give it idand set it to#your-id { margin-left: whatever !important; }
id
#your-id { margin-left: whatever !important; }
Using !importantCSS in your stylesheet is one option.
!important
inline style, removeAttr('style').
removeAttr('style')