Hi, I'm sorry if this has been asked before, but how would one implement suckerfish menus in this them? Which files would I have to modify? By the way, thank you for sharing this beautiful theme.

Comments

jacine’s picture

Hi KayGee,

I'm really not sure because I've never used the suckerfish menus before.

I did do a search though and came up with a module that might help you: http://drupal.org/project/dropdown_menu

:)

KayGee’s picture

Hi Jacine,

Thank you for your reply. I did some searching and theme comparisons and was able to implement suckerfish menus in the Sky theme. My programming skills are really rudimentary and there's probably a better way of doing this, but here's what I did :

I created a region in template.php using the line
'suckerfish_menu' => t('suckerfish menu'),

Then added the following to page.tpl.php

<div id="suckerfishmenu" class="clear-block">
<table width="100%">  <tr><td>
            <?php print $suckerfish_menu; ?>
	</td></tr></table>
</div>

Then I just added some CSS. It still needs some tweaking, but it's kinda working for now. Thanks again for the theme.

Kirk

tonino66’s picture

Hi kirk,

I used this simple modification:

    <div class="navigation">
      <?php print theme('links', $primary_links); ?>
    </div>

changed ( page.tpl.php ) to:

    <div class="dropdown_menu">
      <?php print theme_dropdown_menu(variable_get('menu_primary_menu',0)); ?>
    </div>
KayGee’s picture

tonino66,

Thank you for that! I will definitely try that out too.

Kirk

jacine’s picture

Status: Active » Closed (fixed)

Thanks for jumping in to help tonino66 :)