Hello,

I am extremely new to Drupal (less than 24 hours) and am trying to use the RedFire theme on a Drupal 6.6 host. I can't seem to figure out how content get's added to the "Red" area at the top of the content block. I have used both the "Page" and "Story" node types but neither seems to allow entry of text into the "Red" area. I've looked through some of the site variables as well and can't find a corresponding value.

I am sure that I'm missing something very elementary and apologize. BTW, great theme - appreciate you contributing it!

Thanks, Jim

Comments

Neetu.ebizon’s picture

Hi,
to add any text to red area you need to do a change in page.tpl.php file.
In this file find the code
<div class="contents">
<?php print $message;?>
<?php print $tabs;?>
<?php print $breadcrumb;?>
</div>

and change this code with
<div class="contents"><h1>add your text to red area</h1>
<?php print $message;?>
<?php print $tabs;?>
<?php print $breadcrumb;?>
</div>
Neetu.ebizon’s picture

Status: Active » Fixed
Neetu.ebizon’s picture

Status: Fixed » Closed (fixed)