Images in directories not showing up on default.php

Permalink
I've got a directory structure of c5b00k/elements/images and the header.php and footer.php files are in the elements directory. So any image file that is used in them should come from the images/ directory. <see code sample of header.php attached> However none of the images in the directory show up for the 4 tags in the header.php file.

Any clues?

Thanks,
Tom Bloodgood

header.php:

<?php defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Concrete5 Theme</title>
<link rel="stylesheet" media="screen" type="text/css"
href="<?php echo $this->getStyleSheet('main.css');?>" />
<link rel="stylesheet" media="screen" type="text/css"
href="<?php echo $this->getStyleSheet('typography.css');?>" />

<?php Loader::element('header_required'); ?></style>
</head>

<body>
<div id="wrapper">
<div id="page">
<div id="header_line_top"></div>
<div id="header">
<?php
$a = new Area('Header Nav');
$a->display($c);
?>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="header-left"> <a href="../default.php"> <img src="images/logo.jpg" alt="Overton Logo" /></a> </div>
<div id="header-right">
<div class="tar" id="tagline-image"><img alt="" src="images/tooling-tagline.jpg" /></div>

<div id="tagline-text">&nbsp; Carbide Tooling &middot; Powdered Metal Dies &middot; Stamping Dies<br />
Injection Molds &middot; Special Machines for Tube &amp; Pipe Forming </div>
</div>
<div class="menu">

 
beebs93 replied on at Permalink Reply
beebs93
If the images are in the SITE_ROOT/themes/c5b00k/images folder:

<img src="<?php echo $this->getThemePath(); ?>/images/logo.jpg" alt="Overton Logo" />