How do I access the drupal admin panel.
September 27, 2008 2:56 PM Subscribe
Three drupal questions
1. I disabled the log in form on the main page, now how do I get to the admin panel?
(Please note, I have a local install of drupal, php, MySQL and Apache for Dev purposes.)
2. How can I create drop down menus?
3. Is there a way I can change the layout for a certain page? Such as I want the main page to be two columns while others to be one with tables or something to that effect for grid data. How can I do this?
posted by BoldStepDesign to computers & internet (6 answers total) 2 users marked this as a favorite
2. I don't know off the top of my head, but you should be able to use pretty standard DHTML stuff to insert dropdown menus using your theme or a module. Drupal by default includes JQuery now, so you have a pretty powerful Javascript library to use as well. Quickly searching Google, I found Nice Menus which might do what you want. Look around.
3. I recall there being a few modules that let you do custom pages, or you can go whole hog and create new page.tpl.php files. For example, if the internal URL of the page you want to treat specially that's accessible at yourhost/grid you can create copy page.tpl.php in your current theme to page-grid.tpl.php and do whatever you want to that. Using different page templates depending on the current path talks about that.
The tricky I've found about Drupal is that there are a lot of different ways to do almost every task, so deciding on the best way is really the challenge.
posted by skynxnex at 3:19 PM on September 27, 2008