Hello Maarten,
Thank you for your suggestion!
You pushed me into the right direction, but unfortunately it doesn't do what I was aiming for. It results in the following picture
1
2---------------------------------------
3| | | | |
4| | | | |
5| | | | |
6| | | | |
7| | | | |
8| | | | |
9| | | | |
10| | | | |
11---------------------------------------
Right now, I modified it into this
1
2<div class="ace_layout_3" id="main-content" role="main">
3 <div class="portlet-layout">
4 <div class="aui-w70 portlet-column portlet-column-first" id="column-left">
5 <div class="aui-w100 portlet-column portlet-column-first" id="column-1">
6 $processor.processColumn("column-1", "portlet-column-content portlet-column-content-first")
7 </div>
8 <div class="portlet-layout">
9 <div class="aui-w100 portlet-column portlet-column" id="column-left-inside">
10 <div class="aui-w30 portlet-column portlet-column" id="column-2">
11 $processor.processColumn("column-2", "portlet-column-content portlet-column-content")
12 </div>
13 <div class="aui-w70 portlet-column portlet-column-first" id="column-3">
14 $processor.processColumn("column-3", "portlet-column-content portlet-column-content")
15 </div>
16 </div>
17 </div>
18 </div>
19 <div class="aui-w30 portlet-column portlet-column-last" id="column-4">
20 $processor.processColumn("column-4", "portlet-column-content portlet-column-content-last")
21 </div>
22 </div>
23
24</div>
It adds in the second row, but it still tries to push columns in between the uppers two ones (like in the sketch).
Am I going into the right direction, when using a second portlet-layout in order to achieve the second row of 30/70 columns?