remove header logo (text with link)

Permalink
What is the best way to remove the 'header logo' being the text and link that appears on all the pages?
Is there a css I can drop in which will apply to the site vs each page ? or?? Yes Im noob. thanks

wlionline
View Replies:
jordanlev replied on at Permalink Reply
jordanlev
You can remove the header by editing this file:
YOURSITE/packages/theme_yosemite/themes/yosemite/elements/header.php

and removing this:
<div id="header">
   <div id="logo">
      <h1><a href="<?php  print DIR_REL; ?>/"><?php  print SITE; ?></a></h1>
   </div>
</div>


Unfortunately this can only be done on a site-wide basis -- you cannot make the header different for different pages.

-Jordan