Witam ma problem zrobiłem menu flash wstawiłem na stronie ale nie działa pod mozillą działał w jednym momencie aż coś zmieniłem w kodzie poniżej screen i kod. Jak by mi ktos porawił bym byl wdzięcznu
function render_header($header_content) {
global $theme_width,$settings;
echo "<table align='center' class='bodyline' width='$theme_width' cellspacing='0' cellpadding='0' border='0'>";
echo "<tr><td width='0' nowrap='nowrap' class='lefttd'></td><td>";
echo "<table width='0%' border='0' cellspacing='0' cellpadding='0'><tr>";
echo "<td width='0%'><center>$header_content</center></td>";
echo "</tr></table>";
echo "<table width='0%' border='0' cellspacing='0' cellpadding='0'><tr>";
echo "<td><table width='0%' height='0' border='0' cellpadding='0' cellspacing='0'>";
echo "<object classid='clsid:d27CDB6E-AE6D-11cf-96B8-444553540000'
codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0'
id='bluedot' width='800' height='33'>
<param name='movie' value='http://therealbws.info/flash/bluedot.swf'>
<param name='quality' value='high'>
<param name='bgcolor' value='#0e0e0f'>
<embed name='header' src='http://therealbws.info/flash/bluedot.swf'
quality='high' bgcolor='#0e0e0f'
width='120%' height='111'
type='application/x-shockwave-flash'
pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>
</object>
</td></tr></table></td></tr></table>";
echo "<table width='0%' cellpadding='0' cellspacing='0' border='0' align='center'>";
echo "</tr></table>";
echo "<table width='0%' cellpadding='0' cellspacing='0' border='0' align='center'>";
echo "<tr valign='top'>";
echo "<td valign='middle' align='right'>";
}
function render_footer($license=false) {
global $settings,$locale;
echo "</tr>\n</table>\n";
echo "<center><table cellpadding='0' cellspacing='0' width='57%'></center>
<tr>
<td class='white-header'>".stripslashes($settings['footer'])." <center>Powered by <a href='http://www.php-fusion.co.uk' target='_blank'>PHP-Fusion</a> v".$settings['version']." © 2005<br>Theme by C-Millionaire</center></td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
|