Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
pages as dropdown
Hej guys.
is it possible to have the pages that ar normally listed in tabs as a dropdown box?
wich files do i have to edit?
is it possible to have the pages that ar normally listed in tabs as a dropdown box?
wich files do i have to edit?
0
This discussion has been closed.
Comments
If so, they're just a normal ul-list so you can style them how you like and make them list vertically if you prefer. You can make that into a suckerfish menu too.
There was another thread recently on incorporating them into the Panel.
i just wanted an ordinary dropdown, that did it:
echo "<form>\n<select>"; while (list($Key, $Tab) = each($this->Tabs)) { echo '<option onclick="window.location=\''.$Tab['Url'].'\'">'.$Tab['Text'].'</option>'."\n"; } echo "</select>\n</form>";
while (list($Key, $Tab) = each($this->Tabs)) {
that you find in the menu.php theme file.