|
|
I do not see the feature for making the content in each of the event tabs.
Return to Recent Questions
Q:
I am having two issues.
1. I am trying to create Deluxe-Tabs similar to the one here:
http://deluxe-tabs.com/file/templates/deluxe-tabs-style-4.html.
I do not see the feature for making the content in each of the event tabs. How is that
done?
2. The second issue is that I am using a Deluxe-Menu on
www.domain.com/default and when I navigate [ Activities > Football (ACTIVE
LINK) ] for example, the link goes to the new page, but it does not keep
the menu on the page. I am using master pages and the menu is on the
main-master-page.
A:
1) You should paste your content in the <div> .. </div> tags.
<div id="content1" style=" visibility: hidden;" class="tabPage">
<br><br><br>
<p align=center><img src="img/logo_DM.gif" width=262 height=56 alt="Deluxe-Menu.com"></p>
</div>
<div id="content2" style="visibility: hidden;" class="tabPage">
<br><br><br>
<p align=center><img src="img/logo_DT.gif" width=262 height=56 alt="Deluxe-Tree.com"></p>
</div>
<div id="content3" style=" visibility: hidden;" class="tabPage">
<br><br><br>
<p align=center><img src="img/logo_DTabs.gif" width=254 height=58 alt="Deluxe-Tabs.com"></p>
</div>
See in Deluxe Tabs there are two modes:
1. var tabMode=0;
You can create only one level of event tabs and assign Object Id's of the
DIV's to show when you click on the tab.
["XP Tab 1","content1", "", "", "", "", "", "", "", ],
["XP Tab 2","content2", "", "", "", "", "", "", "", ],
["XP Tab 3","content3", "", "", "", "", "", "", "", ],
["XP Tab 4","content4", "", "", "", "", "", "", "", ],
2. var tabMode=1;
You can assign only links in this mode.
You should create top level items with subitems.
["XP Tab 1","", "", "", "", "", "", "", "", ],
["|Link 1_1","http://deluxe-tabs.com", "", "", "", "", "0", "", "", ],
["|Link 1_2","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_3","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_4","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_5","testlink.htm", "", "", "", "", "0", "", "", ],
["XP Tab 2","", "", "", "", "", "", "", "", ],
["|Link 2_1","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 2_2","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 2_3","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 2_4","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 2_5","testlink.htm", "", "", "", "", "0", "", "", ],
["XP Tab 3","", "", "", "", "", "", "", "", ],
["|Link 3_1","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 3_2","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 3_3","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 3_4","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 3_5","testlink.htm", "", "", "", "", "0", "", "", ],
You can use Object ID as well as Link in both modes. Use the following prefixes within item's link field:
"object:" - means that there is object id after it;
"link:" - means that there is a link after it.
"javascript:" - means that there is a javascript code after it, for example:javascript:alert(\'Hello!\')
So, you should write for example:
["|Link 1_1","object:Content1_1", "", "", "", "", "0", "", "", ],
2) You have incorrect page structure.
Now you have several HEAD, BODY tags on your pages. It is not correct.
You should check your page structure.
Return to Recent Questions
Related:
- March 08, 2007 - Which file(s) I must change to change the content of each tab in the tabs dhtml?
- May 24, 2007 - How I can add content below the dhtml tabs menu, like you have on your site?
- Aug 15, 2007 - Can I use as domain name a IP address�to get the key for the java right click menu?
- Aug 21, 2007 - How do I get the content to refresh when I click on a tabs javascript?
- Jan 07, 2009 - I am having difficulty adding content to the java menu bar tabs.
- Feb 26, 2009 - How do I show different content when selecting the different dhtml layer menu tabs?
- May 03, 2009 - With Doctype the content of my tabs javascript menu object doesn't show in IE.
- Jul 25, 2009 - While the page loads I can see all the content from all the <div> java menu bars and when the page if fully loaded, the web page then displays the content correctly.
- Aug 20, 2009 - While the page loads I can see all the content from all the DIV javascript new menu tabs..
- Oct 26, 2009 - When the page with the dhtml menu with images loads in Firefox 3, ALL the copy in ALL the tabs is displayed in the browser..
- Nov 05, 2009 - If I click on another of the 4 tabs in my navigation tabs, the content doesn't change.
|