Hi,
I noticed that on IE7 the image for "Home" in the upper left corner of the header is a grey box with an out line instead of the image. What's wrong? It works in Firefox.

Also, I want to get rid of that link on the header for "home", but I can't find the controller for it. How do I do it?

Thanks.

Comments

Draven_Caine’s picture

<?php if ($logo) { ?>
	  <div id="site-logo">
        <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo-image" /></a>
		  <?php if ($site_slogan) { ?>
		    <div class='site-slogan-logo'>
		      <h2>
			    <?php print $site_slogan ?>
			  </h2>
		    </div>
		  <?php } ?>
	  </div>

Most themes work in a fashion of if you have a logo uploaded thru your global theme config than home will not print, but if the logo is not present it print the word home , since the logo is a image link to your front page, the work home becomes a text link if there is no image.
The line that i saw that told me this was <img src="<?php print $logo; ?>" alt="<?php print t('Home'); it works like alt on any given image, if the image does appear use alt tag.

i am not a coder just my thoughts.