IT.COM

Need help in converting wordpress txt logo into graphical logo

Spaceship Spaceship
Watch
Impact
0
I customized this theme of a client.
http://www.chapaaonline.com/

i wanted to place a graphic logo instead of txt logo"chapaaonline"

i went in wordpress theme editor: there i find two files.
header.php

if i want to place this logo instead of txt logo,

5.png


(header.php) where in this code. i do change.
--------------------------------------
Code:
 <div class="logo">
<h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>    - <?php bloginfo('description'); ?>">
      <?php bloginfo('name'); ?>
      <span>
      <?php bloginfo('description'); ?>
      </span></a></h1>
  </div>
  <!--/logo -->
--------------------------------------


Thanks advance for your help.
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
--------------------------------------
Code:
<!--logo-->
<div class="logo">
<a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>">
<img 
src="/full_path_to_your_logo_file_relative_to_wp_root_dir" 
alt="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>" />
</a>
</div>
<!--/logo -->
--------------------------------------
 
0
•••
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back