By gavin_s on
Hi Guys
Fairly new to Drupal but loving the learning curve! I have a query I hope someone can help me with.
I'm trying to frame the mission statement in the groups with a rounded edge box.
So I think I need to tell drupal to produce the following for the mission statement within Organic Groups:
<?php if ($mission != ""): ?>
<div id="box">
<div id="L1">
<div id="L2">
<div id="L3">
<div id="L4">
<div id="mission">
<?php print $mission ?></div>
</div>
</div>
</div>
</div>
</div>
<?php endif; ?>Problem is that I can't get it to work. I have tried adding this into my themes page.tpl.php file with the correct references in my CSS, but I still find that the Organic Groups are still just calling DIV #og-mission. I have looked in the OG Module files and am really not sure what to do.
I'm a bit of a newbie at all this so your help would be appreciated.
Scott