I found a page which might help someone wanting to Customise the Aboutpeople Drupal Theme .

CommentFileSizeAuthor
#1 aboutpeople.info708 bytesnnitin

Comments

nnitin’s picture

StatusFileSize
new708 bytes

Hi,

I am happily using AboutPeople theme on my NGO's website. But now there is a requirement that I have to use SuckerFish menus with this theme. Is it possible to do this ?

I tried modifying aboutpeople.info, template.php and page.template.php to accommodate Suckerfish Menus. The menus appeared in the header section but completely broke the theme. So I had to restore it back to the original.

Can you help me ?

Regards,

nnitin

Scott J’s picture

nnitin,
Have you tried using Superfish or Nice Menus modules? I just tried them both, and either one seems to work OK for me.
Scott

Scott J’s picture

Ideally I don't think that I would want to use the header region. I would rather put the menu in "utilities" div, where the original $primary_links are. Utilities can be made into a region by adding
regions[utilities] = Utilities
to aboutpeople.info and editing page.tpl.php to look like

  <div id="utilities">
    <div id="utilities_corner">
  <?php if (isset($primary_links)) : ?>
  <?php print '<div id="plinks">'; ?>
          <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
          <?php print '</div>'; ?>
        <?php endif; ?>
<?php print $utilities; ?>
 </div> </div>