Can somebody tell me how to add elements in the quick menu of the leopard theme and how to change the community description?

Another question.. how can I add elements in the portal.. all in the same theme
thx
There is no such things as stupid questions!
All you have to do is edit header template.
Quick menu looks like this
Code:
<div class="menu">
<ul>
<li><a href="{$mybb->settings['bburl']}/portal.php">Portal</a></li>
<li><a href="{$mybb->settings['bburl']}/index.php">Forum</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
</ul>
</div>
And community description is few rows bellow. ( look after <div class="descr"> )
What elements in the portal?
If you change things in header template like I told you, portal header will be changed automatically.
Hope this helps.