By asking how can a solution look to circumvent the visual design restrictions in Moodle I worked on two solutions.
1. Templates
One nice solution with maximum flexibility for web/graphic designers is to add templates to Moodle. Templates enable designers to work in their design world with their design tools mostly without the need to involve developers.
So I implemented a template class in Moodle 1.9 as a prove of concept. With this template class I added two template engines: a RawPHP template engine and the PHPTAL engine. You may check the outcome at my lab.unodo-design.com site. This is a real and working Moodle 1.9 site showing how flexible you can implement very different page designs.
My posting about this implementation and the discussion with some Moodle developers you may read in The Future of Moodle Templates?.
In short Moodle developers state that it is not possible to implement themes in Moodle now. Many developers argue that Moodle does not even need templates at all. Most developers argue only from their developer point of view. They don't realize the huge advantage of templates for designers. But we designers are the ones who have the potential to implement great pages and interfaces. Moodle developers have proven to lack design competencies.
2. A few line hack in two scripts for Moodle 1.9
For a client project I started to implement a solution to be able to use sticky blocks on all Moodle pages. With this solution not only blocks on all Moodle pages but also positioning the side columns and content different from the actual page layout is possible. This project has been stopped before it was ready. But this concept may be 75% of the solution Nabha is looking for.
A short explanation of the approach
- Fetch the left and right column into a variable each.
- Fetch the content into a variable.
- Create a table-less page layout. (I used RawPHP templates)
- Output content for the header, the left column blocks, the right column blocks, the content area, the footer in the template.
You definitely can create pages as Patrick had sketched in his Good 1.9 themes posting where he writes "The first example that jumps to mind is the two-column theme with the third "column" of sideblocks at the bottom of the content just above the footer."
When there will be a budget to develop this approach ready and test it and enough support to convince Martin Dougiamas to implement this few changes in Moodle 1.9 we may be able to work a bit more flexible with Moodle than now.
The changes I have implemented in a way that they do not change standard Moodle behavior when not activated.