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!
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