How to put a Header Image and a link to that image in wordpress?

Discussion in 'WordPress' started by jojojosonm, Jul 24, 2008.

  1. #1
    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
     
    jojojosonm, Jul 24, 2008 IP
    deluxdon likes this.
  2. BANAGO

    BANAGO Active Member

    Messages:
    456
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #2
    Find the code below:

     
    BANAGO, Jul 24, 2008 IP
    jojojosonm and Jarodboy like this.
  3. Under the Radar

    Under the Radar Active Member

    Messages:
    86
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #3
    It really depends on your theme how to do this.
     
    Under the Radar, Jul 25, 2008 IP
    Jarodboy likes this.
  4. jojojosonm

    jojojosonm Banned

    Messages:
    744
    Likes Received:
    87
    Best Answers:
    0
    Trophy Points:
    0
    #4
    no thats not what i meant..... The title overlaps the header image... any solutions?
     
    jojojosonm, Jul 25, 2008 IP
  5. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #5
    Look for

    
    <?php bloginfo('title'); ?> and <?php bloginfo('description'); ?>
    
    Code (markup):
    in your header.php. Remove them, if it they are there.
     
    mizaks, Jul 25, 2008 IP
    Jarodboy and jojojosonm like this.
  6. BANAGO

    BANAGO Active Member

    Messages:
    456
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #6
    Mizaks is right. Just remove the code.
     
    BANAGO, Jul 26, 2008 IP
  7. jojojosonm

    jojojosonm Banned

    Messages:
    744
    Likes Received:
    87
    Best Answers:
    0
    Trophy Points:
    0
    #7
    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'); ?> &raquo; <?php } ?><?php if ( function_exists('optimal_title') ) { optimal_title('&raquo;'); bloginfo('name'); } else { bloginfo('name'); wp_title('&raquo;'); } ?></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):
     
    jojojosonm, Aug 2, 2008 IP
    deluxdon and Jarodboy like this.
  8. BANAGO

    BANAGO Active Member

    Messages:
    456
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #8
    see at the index.php than. It seems the designer has not included it in the header.
     
    BANAGO, Aug 4, 2008 IP