Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
I'd like to build a tabbed menu like kodak.com's but no idea how, seeking advice
Old 04-12-2006, 05:55 PM I'd like to build a tabbed menu like kodak.com's but no idea how, seeking advice
Junior Talker

Posts: 1
Trades: 0
Hi, I would like a menubar like this: http://www.kodak.com

It's tabbed and when clicking a tab additional selections are shown underneath. I don't have much web building experience and was trying to find maybe a dreamweaver extension that could do it. Any pointing in the right direction would be greatly appreciated! Thanks!
sross is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-13-2006, 06:19 AM Re: I'd like to build a tabbed menu like kodak.com's but no idea how, seeking advice
Skilled Talker

Posts: 79
Location: Devon, England
Trades: 0
You want to use CSS for the tabs.

Code:
/* css doc */

#nav_contain {
  width: 400px;
  height: 50px;
}

#tab01 {
  background: #339933;
  width: 200px;
  height: 50px;
  display: inline;
  float: left;
}

#tab01 a {
  width: 200px;
  height: 50px;
  display: block;
}

#tab01 a:hover {
  background: #595656;
}


#tab02 {
  background: #339933;
  width: 200px;
  height: 50px;
  display: inline;
  float: left;
}

#tab02 a {
  width: 200px;
  height: 50px;
  display: block;
}

#tab02 a:hover {
  background: #595656;
}
now in your html just have something like:

HTML Code:
<div id="nav_contain">
   <div id="tab01"><a href="#">Link 1</a></div>
   <div id="tab02"><a href="#">Link 1</a></div>
</div>
Then on each new page you link to just ad another tab style nav underneath.
__________________
Please add to my Talkupation if I was helpful. Thanks.


Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
paaaaaaaaaa is offline
Reply With Quote
View Public Profile Visit paaaaaaaaaa's homepage!
 
Reply     « Reply to I'd like to build a tabbed menu like kodak.com's but no idea how, seeking advice
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.10861 seconds with 12 queries