Hi Justin,
Really nice theme! I'm using it for a client who needs to be able to have their large display graphic on the front disappear on the inside pages. Is this possible, since the graphic itself isn't actually a block (just the overlying text) - and what would be the best way for a drupal newbie (me) to facilitate this? Thanks for your help - Lynne

Comments

Agileware’s picture

Hi Lynne,

In your page.tpl.php theme file, replace this (on line 47)

<div id="featured">
  <?php if ($featured) echo $featured; ?>
</div>

with

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

Thanks for using our theme!

Agileware’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.