I have two stylesheets: a media="print" one and a media="screen" one.
I also have some jQuery code that runs on window resize, changing the margin-left of a div.
Currently, this div is way off to the right when the user prints.
I want the margin-left to always be zero when the user prints.
How could I go about doing this? Thanks in advance!
Give it an
idand set it to#your-id { margin-left: whatever !important; }