1. FORUM. The forum module looks almost like any content type. How can I make a forum that looks like the one on Drupal.org, with forum name, topics, posts, last post, etc.?

2. IMAGES. How to transform links "add comment | email this page | printer friendly version" into image links?

3. MENU. How to design a menu by adding a css class into the tag? (like http://www.ndp.ca/ourrecord)

example

[ul class="menulevel1"]
----[li class="expanded"][a href="#"]About us[/a][/li]
--------[ul class="menulevel2"]
------------[li class="leaf"][a href="#"]History[/a][/li]
------------[li class="leaf"][a href="#"]Mission[/a][/li]
--------[/ul]
----[li class="collapsed"][a href="#"]Information[/a][/li]
[/ul]

Comments

Steven’s picture

You don't need those classes, just use CSS selectors:

#menu ul {
  /* first level */
}
#menu ul ul {
  /* second level */
}

--
If you have a problem, please search before posting a question.

dernier_recours’s picture

Thanks. Pretty easy indeed. Other tips for the other questions?