Please help with this banner!!!

Discussion in 'CSS' started by cool_dude, Jan 28, 2009.

  1. #1
    Hello Dpers,
    I have a banner for my site http://www.tvglitz.com. I want to place this banner in the header file.I need to place this banner instead of that text "Tvglitz". How can I do that?

    P.S: I am not good in coding

    Any help in this regard would be appreciated!!

    Thanks in advance!
     
    cool_dude, Jan 28, 2009 IP
  2. dlb

    dlb Member

    Messages:
    203
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    35
    #2
    Replace;

    <div class="headerleft">
    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
    		Watch Tv Shows,Movies and Music Videos
    </div>
    Code (markup):
    With;

    <div class="headerleft">
    		<h1><a href="<?php echo get_option('home'); ?>/"><img src="/images/logo.jpg" alt="<?php bloginfo('name'); ?>" /></a></h1>
    		Watch Tv Shows,Movies and Music Videos
    </div>
    Code (markup):
    You logo should be in the images folder and named logo.jpg... Or you can edit that line to the correct path.

    Make the edit in your themes header.php file. Also, you may need to set the full path to the logo depending oin how you've got your URL rewriting set up. Example: http://tvglitz.com/wp-content/themes/THEME-TITLE/images/logo.jpg
     
    dlb, Jan 29, 2009 IP