I have dersigned a header that has an image map in it - all in HTML now where do I put this HTML I know I do it in the page.tpl.php but what text do I get rid of.

<div id="header">
			<div class="menu">
				<?php if ($primary_links): ?>
					<div id="primary" class="clear-block">
						<?php print theme('links', $primary_links) ?>
					</div>
				<?php endif; ?>
			</div>

			<div id="logotitle">
				<?php if ($logo) { ?>
					<a href="<?php print $base_path ?>" title="Home"><img src="<?php print $logo ?>" alt="Home" id="logo" /></a>
				<?php } ?>
        
				<?php if ($site_name): ?>
					<h1 id='sitename'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
				<?php endif; ?>

				<?php if ($site_slogan): ?> 
					<div id='site-slogan'>
						<?php print $site_slogan ?>
					</div>
				<?php endif; ?>
        
			</div>
 
 			<?php if ($header): ?>
				<div id="header-region">
					<?php print $header ?>
				</div>
			<?php endif; ?>
      
		</div>

Comments

vm’s picture

you can leave it and put it above the code you show, or create a block , add your HTML to it and place the block above the header, and adjust the blocks css

touchcrew’s picture

but what if I want to get rid of the other stuff

http://life1134.wordpress.com/
http://www.touchcrew.com/

touchcrew’s picture

vm’s picture

experimentation is the best teacher, in theory you can remove every between the header div and place your HTML there. Can probably get away with removing the entire header DIV and place it there. Again, experiment.

touchcrew’s picture

Thanks for all of your help tonight

http://life1134.wordpress.com/
http://www.touchcrew.com/