Add 2 Extra Buttons in Main Navigation Header

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
groogruxking40
Forum Newbie
Posts: 17
Joined: Wed Jun 17, 2009 8:04 am

Add 2 Extra Buttons in Main Navigation Header

Post by groogruxking40 »

I would like to be able to add 2 extra buttons directly underneath the main header navigation under the search box

http://www.christiancouriernewspaper.com/blogbase

right under Home, Archives,About,Subscribe and Contact
I want it to look like this

Home, Archives, About, Subscribe, Contact
Advertisers, Businesses

any ideas?

thank you ahead of time
icesolid
Forum Regular
Posts: 502
Joined: Mon May 06, 2002 9:36 pm
Location: Buffalo, NY

Re: Add 2 Extra Buttons in Main Navigation Header

Post by icesolid »

Is this your website?

Try this:

Code: Select all

<li><span class="new_link"><a href="" title="New Link">New Link</a></span></li>
and then add this to your stylesheet:

Code: Select all

#menu li span.new_link { background: url(images/bg/info.gif) no-repeat; }
groogruxking40
Forum Newbie
Posts: 17
Joined: Wed Jun 17, 2009 8:04 am

Re: Add 2 Extra Buttons in Main Navigation Header

Post by groogruxking40 »

huge thanks!

for some reason the .gif files for the two new links aren't showing

any idea?
icesolid
Forum Regular
Posts: 502
Joined: Mon May 06, 2002 9:36 pm
Location: Buffalo, NY

Re: Add 2 Extra Buttons in Main Navigation Header

Post by icesolid »

Are you sure that they exist and that you are calling them from the right directory?

If so, try defining the width: and height: property in your stylesheet.
groogruxking40
Forum Newbie
Posts: 17
Joined: Wed Jun 17, 2009 8:04 am

Re: Add 2 Extra Buttons in Main Navigation Header

Post by groogruxking40 »

got it all taken care of.
it was a bonehead move on my part

i called the file business instead of businesses works great now
Post Reply