I have Drupal 7 up and running with the Bartik theme, which I have been attempting to modify with a sub-theme according to https://www.drupal.org/node/1114190. I assumed, apparently too innocently, that it would involve only a simple CSS edit to change the appearance of links from tabs to the no-tabs look that is in the navigator of this site. Please let me know what I must do to eliminate the file-folder look. Thanks.

Comments

nevets’s picture

As a start I would use

#main-menu-links a {
	color: #333;
	background: none;
	float: none;
	height: auto;
	line-height: 1em;
	padding: 0px 0.8em;
	text-decoration: none;
	text-shadow: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	display: inline-block;
}

#main-menu-links li.active-trail a,
#main-menu-links li.active-trail a:hover {
	background: none;
}
johnrh’s picture

Thanks, nevets! That did it.