• Resolved cityunderceej

    (@cityunderceej)


    I’m using the INove theme and would like to remove the text title and description of my blog and just show an image/logo instead. I’ve already edited the image to the one I want but the text still appears (as you can see on my site, https://www.playeronepodcast.com).

    Would appreciate any help with this. Thanks in advance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • If you want to remove the clickable title at the very top of the header, then find the following code in style.css

    #title a {
    	text-decoration:none;
    	color:#FFF;
    	/*width:600px;*/
    	height:40px;
    	display:block;
    	font-family:"Trajan Pro";
    	letter-spacing:0;
    }

    Change display:block; to display:none;

    Then down a little further, find the following code:

    #tagline {
    	color:#FFF;
    	border-top:1px solid #FFF;
    	text-decoration:none;
    	font-size:10px;
    	float:left;
    	padding:3px 3px;
    }

    and add a display:none; line to it like below:

    #tagline {
    	color:#FFF;
    	border-top:1px solid #FFF;
    	text-decoration:none;
    	font-size:10px;
    	float:left;
    	padding:3px 3px;
            display:none;
    }
    Thread Starter cityunderceej

    (@cityunderceej)

    Thanks! Is there a way to make the title bar itself a link to the home page of the site?

    Just search the forums here for clickable header

    I have a similar problem. I’ve put a custom header in and removed the original text with my blog name and tagline. I used the fix you stated, but I still have my blog title showing up in a very small font (pos. helvetica or arial) just to the left of where the original blog name was. I know I’ve missed an entry somewhere, but I can’t find it.

    Found it. In the header.php file, I changed

    <div id=”caption”>
    <h1 id=”title”>/”><?php bloginfo(‘name’); ?></h1>
    <div id=”tagline”><?php bloginfo(‘description’); ?></div>
    </div>

    to

    <div id=”caption”>
    <h1></h1>
    <div><??></div>
    </div>

    Worked!

    Thanks so much with the help on the image/text, however now that I have my banner working the title/tagline does not show in the browser bar anymore. Is there a way to return it to the browser since it’s not on the frontpage?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing text header on INove theme’ is closed to new replies.