Does anyone have suggestions on how to fix this?
I checked a previous thread and tried adding the suggested code to my functions.php file, but it doesn't seem to make a difference:
<?php
add_filter('the_content', 'add_opaque_to_all_flash');
function add_opaque_to_all_flash($string) {
$string = str_ireplace('<embed type="application/x-shockwave-flash"', '<param name="wmode" value="opaque"><embed type="application/x-shockwave-flash" wmode="opaque"', $string);
return $string;
}
?>
My web address is http://aahuganda.org. The front flash currently playing is a placeholder, but when I put the real one on, it will extend across the main content area. The flash is locally hosted.
Any help would be greatly appreciated!
