I have 100% wide slider, like:
<div id="fitter" style="width: 100%; height: 400px; overflow: hidden">
<div id="slider" style="width: 1920px; height: 440px; position: relative;">
<div id="nav" style="width: 80px; height: 80px; position: absolute; bottom: 0; right: 0"></div>
</div>
</div>
The #slider is 1920px wide. If users resolution is lower than 1920x1080 the fitter cuts the rest.
Nav will always be slider's children and slider is always positioned relative. It's generated automatically by my slider script. I'm using Nivo Slider if you ask.
The question is how to center nav element or to align it to the right side of the screen (#fitter not #slider).
All I can do is styling "nav" or using JS. Any ideas?
Example: http://jsfiddle.net/aRmEy/ (try to center the second red box)
[edit] Sorry, I'm sick & got headache.