After being told by a friend to try using the div layout, I've been struggling to make it work for my needs.
My goal is to achieve the layout shown in the diagram below:
+-----------------------------------------+ | Fixed Height = 50 | +-----------------------------------------+ | | | | | | | | | Fixed | Whatever | Fixed | | Width | Remains | Width | Total Height = 500px | = | In All | = | Total Width = 600px | 150 | Directions | 150 | | | | | | | | | | | | | +-----------------------------------------+ | Fixed Height = 50 | +-----------------------------------------+
The desired transformation is from http://jsfiddle.net/qPgVx/ . to http://jsfiddle.net/blineberry/juckh/7/ (utilizing divs instead).
This customization is essential because the entire form needs to be adjustable with JavaScript and the center part should flexibly expand and contract.
Unfortunately, I'm facing an issue where the middle section doesn't fill up the height. How can I resolve this?