How change logo on all pages
-
I want to change the logo on all the pages. The website is:https://www.centerschoolpa.org
I’ve read several postings in this forum but still confused where to change.The logo currently in use is Center-School-Logo-new-tag.png
I want to change it to: CenterSchool_logo1.pngFirst I looked at the webpage’s source code.
Then in WP I went to the header.php file but couldn’t find the logo’s name (Center-School-Logo-new-tag.png).Here is part of the source code:
<header id="header"> <div class="logo_container"> <div class="container-fluid container"> <div class="row-fluid"> <div class="span4 "> <h1 id="logo"> <a href="https://www.centerschoolpa.org"> <img class="logo_img" width="301" height="120" src="https://www.centerschoolpa.org/wp-content/uploads/2014/06/Center-School-Logo-new-tag.png" alt="Center School—Private School for Children with LD (Abington & Philadelphia)"> </a> </h1> </div>
Below is part of the header.php file that I think affects the logo.
<?php }?> <div class="logo_container"> <div class="container-fluid container"> <div class="row-fluid"> <div class="span4 <?php if($rtl_layout == 'enable'){echo 'pull-right';}?>"> <h1 id="logo"> <?php //Print Logo $image_src = ''; if(!empty($header_logo)){ $image_src = wp_get_attachment_image_src( $header_logo, 'full' ); $image_src = (empty($image_src))? '': $image_src[0]; }?> <a href="<?php echo home_url(); ?>"> <img class="logo_img" width="<?php echo $logo_width;?>" height="<?php echo $logo_height;?>" src="<?php if($image_src <> ''){echo $image_src;}else{echo CP_PATH_URL.'/images/logo.png';}?>" alt="<?php echo bloginfo( 'name' )?>"> </a> </h1>
Am I looking at the wrong php file???
Please help! I don’t know much about php.
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How change logo on all pages’ is closed to new replies.