You’ve added your header image in the wrong place. Try editing header.php and changing:
<div id="header">
<img src="<?php bloginfo('template_directory'); ?>/images/weddingbanner.jpg"/>
<p id="logo">
<a href="<?php bloginfo('template_directory'); ?>"><?php bloginfo('name'); ?></a>
</p>
to:
<div id="header">
<p id="logo">
<a href="<?php bloginfo('template_directory'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/weddingbanner.jpg" alt="<?php bloginfo('description'); ?>" /></a>
</p>
Thanks Esmi.
But I currently have this for my header.php file:
<?php
/**
* Handle the opening HTML and actions.
*
* @package Thesis
*/
?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>
<head profile=”http://gmpg.org/xfn/11″>
<title><?php thesis_output_title(); ?></title>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<?php
if (is_singular())
wp_enqueue_script(‘comment-reply’);
wp_head(); ?>
</head>
<body<?php thesis_body_classes(); ?>>
<?php thesis_hook_before_html(); ?>
With the THesis theme, it has an addon (not a plugin) where you can edit numerous parts of the theme. It’s called Thesis OpenHook.
I added some code to a part called Header (Equivalent to adding to thesis_hook_header in your custom_functions.php file)
This is the code I added:
<img src=”http://wedshine.com/wp-content/themes/thesis%5Bv.1.5%5D/images/weddingbanner.jpg”>
What’s the code of that hook?