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
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
 
When You Register, These Ads Go Away!
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
Average Talker

Latest Blog Post:
Benchmark Flash on your system
Posts: 28
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.
paaaaaaaaaa is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to I'd like to build a tabbed menu like kodak.com's but no idea how, seeking advice
 

Thread Tools

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

vB 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.11015 seconds with 12 queries