Sloppy coding. You need to close the script tag for the ajaxtabs.js tag and properly close the style section, and fix some other typos/errors. Where you have:
Code:
<script type="text/javascript" src="ajaxtabs/ajaxtabs.js">
link rel="stylesheet" type="text/css" href="conezone.css"/>
<link rel="stylesheet" type="text/css" href="css/midddle.css"/>
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="js/lightbox.js"></script>
<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
<STYLE TYPE="text/css">
.ImgBorder:hover {
border: 1px solid #6699FF;
}
/***********************************************
* Ajax Tabs Content script v2.0- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
It should be like:
Code:
<script type="text/javascript" src="ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script v2.0- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<link rel="stylesheet" type="text/css" href="conezone.css"/>
<link rel="stylesheet" type="text/css" href="css/midddle.css"/>
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="js/lightbox.js"></script>
<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
<STYLE TYPE="text/css">
.ImgBorder:hover {
border: 1px solid #6699FF;
}
</style>
There could also still be other problems.
Bookmarks