Well, first apologize for my english (frenchie here), just wanted to thank the community !!

My company website is up and running on a Drupal 4.7 fueled with a few modules, a bit of hacks, blood, cafeine and fun :

www.coyote.fr (French tv producer website)

Thanks to all the gurus who solved my problems, answered my questions, sometimes before I ask !!

Comments

patchak’s picture

It's a really nice site!! How can you create a rss feed for your comments like you did?

Thanks

maxilious’s picture

Very tastfeul layout!

ptilu8’s picture

I use RSS Comment module : http://drupal.org/project/commentrss

... and many more

silverado’s picture

Nice site!!!

One question, how have you developed the tab menu?

ptilu8’s picture

I put this in my template.php :

function phptemplate_menu_links($links) {
  return _phptemplate_callback('menu_links', array(
    'links' => $links,
  ));
}

and this in menu_links.tpl.php :

<?php
  if (!count($links)) {
    return '';
  }
  $level_tmp = explode('-', key($links));
  $level = $level_tmp[0];

  $output = "<ul class=\"links-$level\">\n";

  foreach ($links as $index => $link) {
    $css_id = str_replace(' ', '_', strip_tags($link));

    $output .= '<li';

    if (stristr($index, 'active')) {
      $output .= ' class="active"';
    }

    $output .= ' id="' . $css_id . '">'. $link ."</li>\n";
  }

  $output .= '</ul>';

  print $output;

This way the primary menu becomes a list and you "only" need to style it !!

Hopes this helps !! ;)

silverado’s picture

Of course it helps. Thanks a lot!