I'm working on a project for a large webshop, but I've run into a problem.
I need to put a div with width: 100% of the screen, inside a div with a fixed width of 960px.
<div> /* This div is fixed to 960px */
<div> /* This is the div I want to fit the screen width */
</div>
</div>
Normally I would put the element outside my content area, e.g. in the wrapper or whereever I already have a div with 100% width. But that would involve changing a template which affects all of my clients webshops, and I only need it on this one.
So; basically - How do a set a div to be 100% width of the screen, inside a fixed width parent? Is it even possible?