I\'d like to use the CSS property position:fixed to fix the position of an element but at the same time prevent the element from being positioned over my footer when the use
As long as all the elements are positioned (absolute or relative) you can use the z-index attribute. The default value is 0, so give your footer a higher value and it will appear above the other content.