I have a centered 3 column layout with fixed/sticky navigation on the left and a fixed/sticky sidebar on the right.
Safari, unfortunately, treats fixed elements differently then most browsers and is overlapping the sidebar on my left side navigation. I can bump it over with a margin, but that screws up alternate browsers.
position:fixed targets the browser windows, not the container. You cannot cater for the space between two fixed position elements. That’s why I said: right:0; or whatever
I’ve gotten it to work the way I wanted. Scrapped a bit of my early work and went with this example: http://static.jqueryfordesigners.com/demo/fixedfloat.html There may be some bits and pieces I still have to adjust, but I’m in a much better position. Thanks for the help.