I'm not really a CSS-hero ;-) Well, I try to create a form with bootstrap and some custom css.
I want 3 columns:
- Content
- Editor
- Settings
The Editor should be fixed.
Thats my html: http://d.pr/n/YsVJ
The part of the fixed editor is:
<div class="form-vertical fixed">
<?php echo $this->form->getControlGroup('content'); ?>
</div>
I added some custom css like this:
Well, it works, the editor is fixed, but there is one problem: If I use my iPad or Netbook the div of the editor overlaps the div of the settings (span3).
How can I solve that?