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.

Don’t Allow Non-Logged in Members to See Memberlist

Question: How can I keep Guests (non-logged in users) from seeing the member list in the forum?

Answer: You’ll need to make a slight change in your forum code to switch out a line in the logged_out code to reside in the logged_in code:

From the

{if logged_out}
    {lang
:welcome}
    {include
:top_bar_spacer}
    
<a href="{path:login}">{lang:login}</a>    
    
{include:top_bar_spacer}
    
<a href="{path:register}">{lang:register}</a>    
    
{include:top_bar_spacer}
    
<a href="{path:memberlist}">{lang:memberlist}</a>
{/if} 

Remove the last line in this part of the template, and move it to the next grouping.

NOTE: This article is for EE 1.6.8 only.