Superfish 菜单的下拉菜单出现在 WordPress 中的“智能幻灯片放映”下

发布于 2024-10-24 09:55:44 字数 568 浏览 6 评论 0原文

我几乎整个周六都在试图解决这个问题,但没有成功。火狐浏览器 效果很好,但在 IE8 和 Chrome 中,下拉菜单出现在智能幻灯片下方 (闪光)。请问有人可以帮助我吗? 页面链接: http://www.institutoforlanini.com.br/novosite

这是索引的代码:

<?php get_header (); ?> 

<div id=conteiner> 
  <div id=content> 
    <div id="slider"> php echo do_shortcode ('[smart_slide_show ]');?> </ div> 
  </div> 
</div> <! - End of content div -> 

<?php get_sidebar ();?> 

<?php get_footer ();?>

I spent almost my entire Saturday trying to solve this problem and have not had success. Firefox
works well, but in IE8 and Chrome, the dropdown menu appears below the Smart Slide Show
(Flash). Please could someone help me?
the link to the page: http://www.institutoforlanini.com.br/novosite

This is the code of the index:

<?php get_header (); ?> 

<div id=conteiner> 
  <div id=content> 
    <div id="slider"> php echo do_shortcode ('[smart_slide_show ]');?> </ div> 
  </div> 
</div> <! - End of content div -> 

<?php get_sidebar ();?> 

<?php get_footer ();?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心舞飞扬 2024-10-31 09:55:44

我想我看到了。参数 wmode=opaque 不在 script 部分,仅在 noscript 部分。

<script language="javascript"> 
if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js.");
} else {
        AC_FL_RunContent(
        'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
        'width', '610',
        'height', '300',
        'src', 'http://www.institutoforlanini.com.br/novosite/wp-content/plugins/smart-slide-show/slideshow',
        'quality', 'high',
        'pluginspage', 'http://www.adobe.com/go/getflashplayer_cn',
        'flashvars','url=http://www.institutoforlanini.com.br/novosite/wp-content/plugins/smart-slide-show/data.xml&baseColor=0xFF0000',
        'id', 'AnimatedLines',
        'bgcolor', '#FFFFFF',
        'name', 'AnimatedLines',
        'allowFullScreen', 'false',
        'allowScriptAccess','sameDomain',
        'movie', 'http://www.institutoforlanini.com.br/novosite/wp-content/plugins/smart-slide-show/slideshow'
        ); //end AC code
}

I think I see it. The parameter wmode=opaque is not in the script section, only the noscript section.

<script language="javascript"> 
if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js.");
} else {
        AC_FL_RunContent(
        'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
        'width', '610',
        'height', '300',
        'src', 'http://www.institutoforlanini.com.br/novosite/wp-content/plugins/smart-slide-show/slideshow',
        'quality', 'high',
        'pluginspage', 'http://www.adobe.com/go/getflashplayer_cn',
        'flashvars','url=http://www.institutoforlanini.com.br/novosite/wp-content/plugins/smart-slide-show/data.xml&baseColor=0xFF0000',
        'id', 'AnimatedLines',
        'bgcolor', '#FFFFFF',
        'name', 'AnimatedLines',
        'allowFullScreen', 'false',
        'allowScriptAccess','sameDomain',
        'movie', 'http://www.institutoforlanini.com.br/novosite/wp-content/plugins/smart-slide-show/slideshow'
        ); //end AC code
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文