If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
Did you notice? I’ve finally change my header.
Phew, what was a mess. It was hard to pull out the default Weblog title and the Tagline. There were tons of ways to remove. Let me show you the ways that I’ve tried.
- Removing lines from Header.php
- Altering Css stylesheet
In your header.php look for something similar to the following and remove it.
<title /><?php bloginfo('name'); ? /><?php wp_title(); ? /></title />
And for the description/tagline bit remove this:
<?php bloginfo('description');?>
Easy indeed. This is not the best method as you will not be able to click on the header to go back to the main page. (Unless you have a home icon like I do on the upper left sidebar.)
I recommend using this method. It is also very easy. Just remember to find these line below
#header {
}add in this line.
text-indent:-1000px;
#desr {
}add in this line.
display:none;You actually can combine the two code
text-indent:-1000px;
display:none;in #header{
As I am using Fjords01! theme. I have to create a separate DIV ID at header.php for weblog title and description/tagline; and put in the script as no.2 method. If I don’t. The tagline will still be display. I’d tried putting the display:none; inside #header{ It will ended up shifting all my content up to the header area.
Every theme has a different scripting. Hope you can remove the text with my solution.



