The h_back.jpg image is only displayed on the front page, and not newly created pages that are not posted to front page. Can anyone tell me how to make this image appear on every page please?

Comments

Copey’s picture

I have just resolved this myself, here's the solution for any others. Note this solution may be specific to this theme only, and not others.

Edit the file page.tpl.php found in the theme folder

find the following snippet of code...

<?php if ($is_front): ?>
  <div id="featured"></div>
<?php endif; ?>

... and remove the 1st and 3rd PHP lines. This code tells the "featured" div to only load on the front page. Removing the check to see if it's the front page means that it loads on all pages.

agileware’s picture

Status: Active » Closed (fixed)