By touchcrew on
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
=-=
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
take it off
but what if I want to get rid of the other stuff
http://life1134.wordpress.com/
http://www.touchcrew.com/
Make
I make a
<div>righthttp://life1134.wordpress.com/
http://www.touchcrew.com/
=-=
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.
thanks
Thanks for all of your help tonight
http://life1134.wordpress.com/
http://www.touchcrew.com/