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.

Where Am I?

Question: I need to get a server path for my new file directory. I know what my regular directory is, but not the system path. How can I find this setting?

Answer: The easiest way to do this is to create a whereami.php file with the following content:

<?php echo realpath(dirname(__FILE__)) . '/'?> 

FTP the file up to your new images folder, and navigate to that folder using your browser. You’ll now see your server path.

NOTE: This code snippet will work with both EE1.x and EE2.x.

If you’re on a Windows box, use a trailing \ instead of a / to get the right direction for your slashes.