another “hiding title in header” question
-
I’ve seen this question asked before and have followed the advice set down those threads – but the solutions don’t work for me.
I’m using the “tiga” them and want to hide or remove the title in the header but not in the title bar of the browser.
Here are the relevant files:
style.css:
.header {
border-color:#AAAAAA;
background-color:#F8F7EF;
height:124px;
background-image:url(“images/header1-bg.gif”);
background-repeat:repeat-x;
background-position:left;
border-style:solid;
margin-bottom:5px;
border-width: 1px;
padding-left:10px;
}Style.php
.header {
border-color:<?php tiga_headerBorderColor(); ?>;
background-color:<?php tiga_headerBgColor(); ?>;
height:<?php tiga_headerHeight(); ?>px;
<?php tiga_bgImage(‘header’); ?>
border-style:solid;
margin-bottom:5px;
border-width: 1px;
padding-left:10px;}
header.php
<head>
<title>
<?php bloginfo(‘name’); ?> – <?php bloginfo(‘description’); ?>
<?php wp_title(); ?>
</title>————————-
Any ideas? Thanks in advance?
The topic ‘another “hiding title in header” question’ is closed to new replies.