allora..scusa se rispondo molto in ritardo ma ho avuto molto da fare
da premettere che ho rimesso tutto come era originariamente ma il problema nn si è risolto e allora ho optato per cambiare la galleria ed ho utilizzato simpleviewer (una galleria gratuita in flash) e funzionava tutto perfettamente
però adesso ho un altro problema che è legato al menu non alla galleria...allora per svariati motivi (sia estetici che funzionali) ho deciso di dividere la pagina in 2 frame quello sinistro per il menu e quello principale per la galleria..fin qui nulla di anormale..solo che questo script jQuery.jGlideMenu.067.1 ha tutto un modo particolare di gestire i link e quando apro una pagina dal menu me lo apre nel frame sinistro e nn in quello principale
vi posto pure il codice html del frame:
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>.::† Galleria †::.</title>
<frameset cols="280,*" border=0>
<frame src="menu.html" name="menu" scrolling="NO" noresize>
<frame src="principale.html" name="_myFrame">
</frameset>
</head><body></body></html>
quello del menu:
Codice PHP:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>.::† Galleria †::.</title>
<link rel="stylesheet" type="text/CSS" href="../css/gallery.css" />
<!--[if IE]><link rel="stylesheet" type="text/CSS"
href="../css/gallie.css"><![endif]-->
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript"
src="../js/gallery/jQuery.jGlideMenu.067.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// Initialize Menu
$('#jGlide_001').jGlideMenu({
tileSource : '.jGlide_001_tiles' ,
demoMode : false,
useDragDrop : false,
displayToggle : true,
closeLinkMarkUp : ' '
}).show();
// Connect "Toggle" Link
$('#switch').click(function(){$(this).jGlideMenuToggle();});
});
</script>
</head><body>
<div id="home">
[url="../index.html"][img]../images/gallery/1.png[/img][/url]</div>
<div id="top"></div>
<div id="mid">
<div class="jGM_box" id="jGlide_001">
<ul id="tile_001" class="jGlide_001_tiles" alt="">
<li rel="tile_002">Foto scattate
[/list]
<ul id="tile_002" class="jGlide_001_tiles" alt="">
[*][url="pagine/siracusa1.html"]Siracusa[/url]
[/list]
</div></div><div id="down"></div>
</body><script type="text/javascript" src="/resources/js/plugins/google/analytics/gatag.js">
</script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ?
"https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js'
type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-7365212-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</html>
e di una pagina con la galleria:
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>.::† Galleria †::.</title>
<link rel="stylesheet" type="text/CSS" href="../../css/gallery.css" />
<script type="text/javascript" src="../../js/gallery/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.galleryURL = "../xml/siracusa1.xml";
var params = {};
params.allowfullscreen = true;
params.allowscriptaccess = "always";
params.bgcolor = "000000";
swfobject.embedSWF("../../js/gallery/simpleviewer.swf", "flashContent",
"100%", "100%", "9.0.124", false, flashvars, params);
</script>
<style type="text/css" media="screen">
html, body { height:100%; }
body {margin:0; padding:0; overflow:auto;}</style>
</head><body>
<div id="flashContent">SimpleViewer requires JavaScript and the Flash Player.
[url="http://get.adobe.com/flashplayer/"]Get Flash[/url]</div>
</body></html>