I want to put a header image instead of the title and description and want to place a link to homepage from that image.I also like to have the meta tags there..Pls help THanks
Look for <?php bloginfo('title'); ?> and <?php bloginfo('description'); ?> Code (markup): in your header.php. Remove them, if it they are there.
I can not find such a code..... Here is my header <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php if ( is_home() ) { bloginfo('description'); ?> » <?php } ?><?php if ( function_exists('optimal_title') ) { optimal_title('»'); bloginfo('name'); } else { bloginfo('name'); wp_title('»'); } ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" /> <!--[if gte IE 7]><link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie7.css" media="screen" /><![endif]--> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_head(); ?> </head> <body> <div id="container"> Code (markup):