I have a javascript file containing css :
a(this).css({
    position:"fixed",
    top: "210px",
    left: "1450px" ,
    width: "30px", 
    height: "30px", 
    margin: "0", 
    padding: "0", 
    minWidth: "65px", 
    listStyleType: "none", 
    zIndex: 1e7
});
The top and left seems to get changed somewhere else when I resize the screen. Where to I add !important to them to see if that works? 
 
     
    