What is needed to fix the fluid-fixed layout issue?
HTML:
<div class="header">
<div class="title">Title</div>
<div class="options">Opt</div>
</div>
CSS:
.header{margin:0;padding:0;}
.title{margin-right:50px;}
.options{float:right;width:50px;position:relative;top:0;left:auto;}
DEMO: http://jsfiddle.net/7Sdq6/
The provided link works, but there seems to be a missing element in the original example that needs fixing.
http://jsfiddle.net/andresilich/6vPqA/13/show/
EDIT: Although I can position .options absolutely, I am facing issues with dropdown placement relative to .options