Buongiorno a tutti!
Ho questo problema: ho implementato nel mio sito (per il momento in locale) una galleryview realizzata in jquery. Il tutto graficamente è perfetto su firefox e chrome, ma ovviamente IE dà problemi: durante la transizione da una foto all'altra il testo contenuto nel .panel_overlay prende il colore che ho attribuito a .gallery
questo è il css
codice:
/* GALLERY LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#photos { visibility: hidden; }
/* GALLERY CONTAINER */
.gallery { background: #555555; border: 1px solid #aaa; padding: 5px; color: #ffcf78;}
/* LOADING BOX */
.loader { background: url(loader.gif) center center no-repeat #ddd; }
/* GALLERY PANELS */
.panel {color: black; font-size: 13px; text-align: left;}
/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background { height: 60px; padding: 0 1em; }
/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background { background: #ffcf78; color: black; font-size: 13px; text-align: left;}
/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: black; font-size: 13px; text-align: left;}
.panel .panel-overlay a { color: #920b0b; text-decoration: underline; font-weight: bold; }
/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 5px; }
/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {}
/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap { border: 1px solid #d1261e; }
/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap { border-color: #920b0b; }
/* FRAME IMAGES */
.frame img { border: none; margin-bottom:5px}
/* FRAME CAPTION */
.frame .caption { font-size: 11px; color: #888; }
/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }
/* POINTER FOR CURRENT FRAME */
.pointer {
border-color: #920b0b;
}
.panel{
text-align: left;
}
/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer {
filter: chroma(color=pink);
}
questo invece è il sorgente della mia pagina
codice:
<div id="gallery_wrap">
<div id="photos" class="galleryview" align="center">
<ul id="filmstrip">
[*]
<span class='caption'>prova</span>
<span class='panel-overlay'>
<h1 class='titolo_gallery'>NEWS NUMERO 1</h1>
Vedi dettagli
</span>
<center>[img]uploads/633840275774013750_bluetrilateral.jpg[/img]</center>[*]
<span class='caption'>prova</span>
<span class='panel-overlay'>
<h1 class='titolo_gallery'>PROVA JAVA</h1>prova javascript di modifica
Vedi dettagli
</span>
<center>[img]uploads/Feb09_Category_SoftStyle_66215824.jpg[/img]</center>[*][/list]
</div>
</div>
non so se mi sono spiegata bene...
Avete già affrontato un problema simile? Avete qualche idea su come posso ovviare a questo "cambio di colore"?
Grazie in anticipo