Quote Originally Posted by dharma View Post
Love your template! I am still on the fence about the footer links: being visible only on mouse overs. Is there a way to turn this off?
That's just a stylesheet mistake. Of course not intentional, LOL!

Open up the includes/templates/simple_zen/css/stylesheet_new.css and find:
Code:
#navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
	text-decoration: none;
	padding: 0em 0.9em;
	margin: 0;
	color: #fff;
	white-space: nowrap;
	}
	
#navCatTabs ul li a {
	text-decoration: none;
	padding: 0em 0.9em;
	margin: 0;
	color: #666;
	white-space: nowrap;
	}
to:

Code:
#navMain ul li a {
	text-decoration: none;
	padding: 0em 0.9em;
	margin: 0;
	color: #fff;
	white-space: nowrap;
	}
	
#navCatTabs ul li a, #navSupp ul li a {
	text-decoration: none;
	padding: 0em 0.9em;
	margin: 0;
	color: #666;
	white-space: nowrap;
	}