Can anyone tell me how I can get the FrontPage to Show 2 clumns of "News feed" after the first row like on the live demo
http://demo.drupalizing.com/?theme=corporateclean

Comments

roxart created an issue.

Deepika.chavan’s picture

Hi Roxart,

This theme is based on 960 grid system. Link - https://960.gs/demo.html
So if you want to divide content in 2 columns then you will need to add some classes to your <div>
i.e. Total content is of 12 grids so if 4 grid's width is used by sidebar then (12-4=8) grids remains for main content.
Now if you want to divide that 8 grids in 2 columns then you need to add classes like 'grid_4' to each div.
By doing this that div will be set in 4 grid width (one below other). But to place them inline you will have to use classes like 'alpha' and 'omega' (alpha - for left column and omega - for right column)
Now your html should look like:

<div>1st row content goes here</div>
<div class="grid_4 alpha">Left Column content goes here </div>
<div class="grid_4 omega"> Right Column content goes here </div>

Available classes : grid_1, grid_2, grid_3, grid_4, grid_5, grid_6, grid_7, grid_8, grid_9, grid_10, grid_11, grid_12

Hope that helps !

Regards,
Deepika Chavan