A Few Quick Notes for Fortissimo WordPress Theme:

1) This theme includes 3 sidebars. The first sidebar is verticle and resides along the left side of the post area. Siebar 2 and 3 are located in the "subpage" area of the template.

2) If you would like wider menu tabs replace the css between lines 55-79 with the following.

#menu ul li a {
	float:left;
	color:#555;
	width:100px;
	height:23px;
	text-align:center;
	text-decoration:none;
	background-image: url(img/tab_inactive_wide.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#menu ul li a:hover, 
#menu ul li.current_page_item a, 
#menu ul li.current_page_item:hover {
	color:#000;
	background-image: url(img/tab_active_wide.png);
	background-repeat: no-repeat;
}


Here is the original just in case:

#menu ul li a {
	float:left;
	color:#555;
	width:100px;
	height:23px;
	text-align:center;
	text-decoration:none;
	background-image: url(img/tab_inactive.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#menu ul li a:hover, 
#menu ul li.current_page_item a, 
#menu ul li.current_page_item:hover {
	color:#000;
	background-image: url(img/tab_active.png);
	background-repeat: no-repeat;
}