This is the H2

This is The Grid, the first free website template from andreasviklund.com which is built upon a CSS grid system. Inspired by the 1KB CSS Grid and other systems, The Grid template has a 12-column grid based on 60 pixels wide columns with 20 pixels of space inbetween. To use the grid, you create a div with the class="row" and then place any number of divs with class="col" and a second class stating the width of the column (c1-c12) inside the row. The Grid supports nested rows which means that thousands of layout combinations can be created, from single-column pages to advanced magazine-style layouts. The template uses standards-compliant code.

Increase PHP Memory Limit on MAMP Pro

By default PHP has either 8MB (for PHP4) or 16MB (for PHP5) of memory on MAMP PRO (version 1.8.2). 16MB is certainly enough to run a basic install of ExpressionEngine but advanced image manipulation or use of the IP to Nation module will require more.

In MAMP PRO go to the File > Edit Template menu and then select the version of PHP you are working with. This will open the php.ini file in an editor window. Scroll down to find or search for ‘memory_limit’. This will be under the ‘Resource Limits’ heading on about line 230. It will look something like this (for PHP5):

memory_limit 16MMaximum amount of memory a script may consume 

To change the limit to 32MB we can edit it like this:

memory_limit 32MMaximum amount of memory a script may consume 

Select File > Save. Now you will have to restart the server for the change to take place.