Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tabs

Status
Not open for further replies.

paulcarey

Programmer
Jun 15, 2001
45
GB
Is there anyway of producing a tab navigation page without using an applet?

 
I presume you mean tabs like the ones at the top of this page with forum, FAQ's, Search etc ? that's not done using an applet. It's simple images that are just lined up to look like tabs, they're just ordinary links to different pages within the site then. If you have a look at the code for this page you can see it quiet plainly
Code:
<TABLE WIDTH=&quot;100%&quot; BORDER=0 CELLPADDING=0 CELLSPACING=0>
	<TR>

		<TD WIDTH=35><IMG SRC=&quot;/art/tableft.gif&quot; WIDTH=35 HEIGHT=43 BORDER=0></TD>
		<TD WIDTH=&quot;85&quot;><A HREF=&quot;/threadminder.cfm?spid=215&quot;><IMG SRC=&quot;/art/tabforum1.gif&quot; WIDTH=85 HEIGHT=43 BORDER=0></A></TD>
		<TD WIDTH=80><A HREF=&quot;/search.cfm?spid=215&quot;><IMG SRC=&quot;/art/tabkywrd1.gif&quot; WIDTH=80 HEIGHT=43 BORDER=0></A></TD>
		<TD WIDTH=80><A HREF=&quot;/faq.cfm?spid=215&quot;><IMG SRC=&quot;/art/tabfaqs1.gif&quot; WIDTH=80 HEIGHT=43 BORDER=0></A></TD>
		<TD WIDTH=88><A HREF=&quot;/links.cfm?spid=215&quot;><IMG SRC=&quot;/art/tablinks1.gif&quot; WIDTH=88 HEIGHT=43 BORDER=0></A></TD>
		<TD WIDTH=&quot;100%&quot; BACKGROUND=&quot;/art/tabspacer.gif&quot;>&nbsp;</TD>
		<TD WIDTH=141><IMG SRC=&quot;/art/tabright.gif&quot; WIDTH=145 HEIGHT=43 BORDER=0></TD>

	</TR>
</TABLE>

Hope this is what you're looking for ?
 
The tabs at the top are kind of what I'm looking for but they dont behave like classic tabs ie click to bring to the fore, all others to background. Are these types possible?
 
Paul, what part of the world are you from? Not ireland by any chance?
 
you can use divs and just change the visibility with clicks... this should provide what you are trying to do
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top