I'm a super newbie using Drupal. I'm administering a friends website for her because her website designer split town on her. http://www.ittybittiesboutique.com

What i want to do is add a menu item at the top of the website in the menu bar that says "Store" that has a link to an online store i made for her.

it seems that every menu related thing i try in the admin part of drupal just lets me add menu items to the administration menu, not to the main menu bar of the website. The menu bar i'm talking about says "Home About Us Brands ....."

how the heck do i add a menu item with a link?

Comments

vm’s picture

looks to me like whoever designed the theme, hardcoded the links you are questioning rather than using drupal's built in primary links menu. viewing the source code of a rendered page will help.

tpstaples’s picture

OH man!!!

how can i find out if it's hard coded? what do i have to do. I'm lost here, drupal is very very new to me. All i want to do is add a link to the online store.

vm’s picture

investigate page.tpl.php

tpstaples’s picture

Yup.. hard coded... so i'm guessing i just change this, upload it to the ftp site and i should be good to go?

you rock verymisunderstood

   <tr align="center" valign="top">
            <td height="12" colspan="2" align="center"><table width="775" height="25" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td width="775" height="50" align="center" valign="middle" background="<?php print base_path() . path_to_theme() ?>/images/barr1.gif"><table width="754" border="0" align="center" cellpadding="0" cellspacing="0" id="menu" >
                  <tr>
                    <td height="40" align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>">Home</a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>about">About Us</a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>brands">Brands</a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>hipthreads">Hip Threads </a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>rockstar">Rock Star <br>
                      Hall of Fame</a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>news">News, sales and specials </a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>faq">FAQ</a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    
                    <td height="40" align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>hours">Hours</a></td>
                    <td align="center" valign="middle" class="nav"><img src="<?php print base_path() . path_to_theme() ?>/images/whitedots.gif" width="2" height="18"></td>
                    <td align="center" valign="middle" class="nav"><a href="<?php print base_path() ?>contact">Contact Us</a></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
          <tr>
vm’s picture

yes. Unless you want to get into doing it the drupal way and putting back the things the previous developer seems to have ripped out.

tpstaples’s picture

Mmmm.. not right now, i'm not too familiar with dupal so i just hacked the pre-existing code. Now it's all set thanks to you!!!!!!!!!!

you rock!!!!! thank you so much