I would think that if you include the “display: none;” property in the #header, you would really mangle your blog.
If you want to get rid of the blog name and description from showing up, just remove the references to it in your site’s theme.
In WP’s default theme, there’s this in header.php
<div id="header">
<div id="headerimg">
<h1><a href="<?php echo get_settings('home'); ?>/">
<?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
</div>
You can remove this:
<h1><a href="<?php echo get_settings('home'); ?>/">
<?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
and that will remove the blog name and description.
You could even just remove the whole headerimg div. But we don’t know what theme you’re using, either. you didn’t provide a link.
citewurker, I think the problem with removing the template tags that generate the title and description is that it makes your site less accessible to text readers and search engine spiders.
Since I posted the question above, I found this technique in the codex to move the css tags and contents off the web page:
h1 {position: absolute;
font-size: 0;
left: -1000px; }
I tried it, took out all the other code, and it seems to work OK…
here’s the url:
http://codex.ww.wp.xz.cn/Designing_Headers#Hiding_the_Header_Text
>accessible to text readers and search engine spiders.
text readers? maybe.
search engines? no. and the proof is in the googling of village-idiot OR village idiot
#1 on Google, and I do NOT and have never used a header tag to supply that; my domain name ( minus the .org [on purpose] ) shows up as well.
thats called using meta tags
but thats another topic isnt it.
I guess it’s personal preference.
I figure if I’m never going to use it, might as well not have it there to confuse me when I go back to look at it. 🙂
The theme I use didn’t reference the blog name or description in the header.php, but instead had it in a div called #masthead in most of the other theme files like index.php and single.php, etc.
In this div were the php references for blog name and description. I simply removed them all, because I use a background image only.
Anyway, like I said before, it kind of depends on the theme that you’re modifying. I responded to your question, because I removed all my blog name and description info about a year ago, but I added meta description and keyword lines into the <head></head> area.