Hi there, not sure if this is the right subject to post under, but here we go!
I'm trying to adjust the header image in the Greenlight theme on my website http://www.greenfairygames.com
All I want to do is change the "Home" link and it's icon to our company's logo (a file I have). Still want it to be the "return to homepage" link, just without the text and a different image.
I have tried all the other answers I could find floating about regarding this, like, adjusting/replacing the get_option('home'), reinstalling the theme once I've added my logo jpg to the theme zip folder (under images), and even uploading it to my hosting cpanel file manager. . . Nothing seems to touch it.
I'm fairly new to WP/coding so any help will be much appreciated. Thanks!
Code presently looks like this (header.php)
<!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" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="http://www.greenfairygames.com/wp-content/uploads/2012/07/Green-Green-Fairy-Logo.jpg" />
<?php wp_get_archives('type=yearly&format=link'); ?>
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/tabs.js"></script>
<?php if(is_singular()){ wp_enqueue_script('comment-reply');}?>
<?php wp_head(); ?>
</head>
<body>
<div id="base">
<div id="base2">
<div id="header">
<?php $tmp=(is_single() || is_page() || is_archive())? "div":"h1";?>
<<?php echo $tmp;?> id="blogtitle"><a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a></<?php echo $tmp;?>>
<div id="subtitle"><?php bloginfo('description');?></div>
<a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/spacer.gif" alt="Home" class="home"/></a>
<ul><?php
$options = get_option('widget_pages');
$exclude = empty($options['exclude'] ) ? '' : $options['exclude'];
wp_list_pages('sort_column=menu_order&depth=1&title_li=&exclude='.$exclude);
?></ul>
</div>
<div id="container">