Hello,

Great Theme! Loving the ease of it! Anyway, I am trying to move the breadcrumb to the bottom of the page, or just deleting it entirely. The menu layout is simple enough, and I do not want to confuse the users even more. I was also wondering if it would be possible to delete the secondary menu that appears when a day is click, i.e. Thirsty Hungry Bored, below the suckerfish drop down menu. I am looking for some suggestions to reducing the clutter that may confuse visitors.

www.nicholasblexrud.com

Thanks A Lot! Keep up the Great Work!

Nick

Comments

greenplasticme’s picture

To view what I am trying to say, click on a day of the week and you will notice the secondary menus' and breadcrumbs below the suckerfish.

Thanks Again

Nick

Florian’s picture

There are two breadcrumbs, the first under the menu is displayed all the time. The second will appear on the top of the page only if top regions (user1 ...3) are used. To get rid of the first bredcrumb delete this lines in page.tpl.php:

	<?php if ($breadcrumb): ?>
		<div id="breadcrumb">
			<?php print $breadcrumb; ?>
		</div>
	<?php endif; ?>

For the second one:

				<?php if ($section1count > 0): ?>
					<?php if ($breadcrumb): ?><div id="breadcrumb2"><?php print $breadcrumb; ?></div><?php endif; ?>
				<?php endif; ?>