This is my first question so, please be gentle.
I am a novice to HTML and CSS and I am trying to achieve something that appears to be outside of my skills.
I have this situation: I need to make a page with left-fixed navigation bar and a right part with a gallery with fixed width items.
I made a fiddle: http://jsfiddle.net/1fbntotr/
<div class="left"> <div class="logo"> </div></div>
<div class="right">
<div class="item"> </div><div class="item"> </div><div class="item"> </div><div class="item"> </div>
<div class="item"> </div><div class="item"> </div><div class="item"> </div><div class="item"> </div>
<div class="item"> </div><div class="item"> </div><div class="item"> </div><div class="item"> </div>
<div class="item"> </div><div class="item"> </div><div class="item"> </div><div class="item"> </div>
<div class="item"> </div><div class="item"> </div><div class="item"> </div><div class="item"> </div>
</div>
The right part doesn't see the items are ended, so there goes that 'ghost' part in the middle, even though they are using percentages for their width.
I tried anything I found in other discussions but they don't appear to work with my example which has a slightly different layout.
I wonder if there is something basic I'm missing that you might help me with. Thanks for your patience.