pages? you mean the "discussions, categories, search, account etc."?
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.
yeah, i stepped on suckerfish myself. that wasn't exactly what i wanted ^^
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>";
I would like to make a suckerfish menu...I'm a bit of an idiot with this sort of thing tho...can someone give me a clue of where to begin? Thank you so much!!
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.