幻灯标题在火狐中显示不全的解决办法

一直用IE、傲游、搜狗、360等几个浏览器,看着自己网站,也没有感觉什么不对的地方。今天有个热心的朋友告诉我,我的网站在火狐浏览器里,幻灯片标题不全。自己安装 firefox后一看,果真如此。先谢谢那位热心的朋友了,现在已经解决了。

织梦模板的flash幻灯片在 firefox里标题显示不全的解决办法:

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.zuola.net/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="{dede:global name='cfg_templeturl'/}/img/slide.swf">');
document.write('<param name="quality" value="high"><param name="bgcolor" value="#ffffff">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
document.write('<embed src="{dede:global name='cfg_templeturl'/}/img/slide.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#ffffff" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.zuola.net/go/getflashplayer" />');
document.write('</object>');

红字部分的 focus_height ,改为swf_height,即可。