Forest Floor

Forest Floor combines 3, 2, or 1 column layout with a neat looking menu.

Download Forest Floor from drupal.org/project/forest_floor. This version is 6.x-1.7 from 2009-Feb-01.

The menu suffers from overaction, jumping around faster than you can move your mouse. If Forrest Floor was converted to Superfish, you could use the Superfish settings to slow down the jump to a usable level.

The primary menu, the one below the image, works with only one line of menu. The version on this page has one change to allow for multiple lines. The following CSS is expanded to let the background menu image expand down. Replace:

#primary{
  display:block;
  height:28px;
  border:1px solid #7D7D7D;
  background:url('images/top-nav.png');
  font-size: 13px;
  margin:0 0 22px 0;
}

With:

#primary{
  display:block;
  /* height:28px; */
  border:1px solid #7D7D7D;
  background:url('images/top-nav.png');
  font-size: 13px;
  margin:0 0 22px 0;
}

#primary ul:after
	{
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
	}