By bsmith451 on
I've searched for: theme override, override layout, override template but I'm not having any luck.
If I have a 3 column layout, I have some pages that would be best displayed as a 2 column layout. I can remove the blocks from this page in the block settings, but how do I extend the main content page to then be over the block area?
-------------
| |..........| |
becomes
-------------
| |............|
Thanks
Comments
body variables
I'd recommend using the basic theme as a starting point for any theming project. http://drupal.org/project/basic
If you have already started, you can still grab helpful snippets of code from the basic theme, most notably..
and the function that generates $body_classes -- it is in the theme's template.php.
When you put that in your theme, the body tag will have different classes on each page, like:
or
And then you just put the sizes in the css, for example:
Thank you! That is incredibly
Thank you!
That is incredibly helpful.