DMXzone Tabs Support Product Page
My tabs aren't working properly
Reported 25 Feb 2013 17:02:08
1
has this problem
25 Feb 2013 17:02:08 Alix Estrada posted:
I've used them before and they worked fine. I've removed them and put them back several times. Can you check my code and see what I've done wrong? Thank you!66.147.244.214/~sgtoolel/about-steve.html
Replies
Replied 26 Feb 2013 07:39:52
26 Feb 2013 07:39:52 Vulcho Vulev replied:
Hello Alix.
Your page code seems a little bit disordered.Also there is double include of the jquery library.
Shoule become:
Regards:Vulcho.
Your page code seems a little bit disordered.Also there is double include of the jquery library.
<link rel="stylesheet" type="text/css" href="Styles/dmxTabs.css" /> <link rel="stylesheet" type="text/css" href="Styles/jqueryui/flick/flick.css" /> <script type="text/javascript" src="ScriptLibrary/jquery-ui-core.min.js"></script> <script type="text/javascript" src="ScriptLibrary/dmxTabs.js"></script> <!-- InstanceEndEditable --> <link rel="stylesheet" type="text/css" href="Styles/dmxNavigationMenu.css" /> <script type="text/javascript" src="ScriptLibrary/jquery.easing.1.3.js"></script> <script type="text/javascript" src="ScriptLibrary/dmxNavigationMenu.js"></script> <link href="Styles/styles-sgt.css" rel="stylesheet" type="text/css" />
Shoule become:
<link rel="stylesheet" type="text/css" href="Styles/dmxTabs.css" /> <link rel="stylesheet" type="text/css" href="Styles/jqueryui/flick/flick.css" /> <script type="text/javascript" src="ScriptLibrary/jquery-latest.pack.js"></script> <script type="text/javascript" src="ScriptLibrary/jquery-ui-core.min.js"></script> <script type="text/javascript" src="ScriptLibrary/dmxTabs.js"></script> <!-- InstanceEndEditable --> <link rel="stylesheet" type="text/css" href="Styles/dmxNavigationMenu.css" /> <script type="text/javascript" src="ScriptLibrary/jquery.easing.1.3.js"></script> <script type="text/javascript" src="ScriptLibrary/dmxNavigationMenu.js"></script> <link href="Styles/styles-sgt.css" rel="stylesheet" type="text/css" />
Regards:Vulcho.