Hi
not sure what code u need to get it to display in FF.....but heres the original of my footer code (unedited)...suggest ya back up ure footer.php..and then try using this...
Code:
<div class="clear"></div>
<div id="footer">
<div class="footerleft">
<?php _e("Copyright", 'studiopress'); ?> © <?php echo date('Y'); ?> <?php bloginfo('name'); ?> · Agent theme <?php _e("by", 'studiopress'); ?> StudioPress</p>
</div>
<div class="footerright">
Get a Blog · WordPress · <?php wp_loginout(); ?> </p>
</div>
<?php // begin code which decides if the footer should display the analytics code entered in the theme options page ?>
<?php if(get_theme_mod('analytics') == 'Yes') { ?>
<?php echo stripslashes (get_theme_mod('analytics_code')); ?>
<?php } else { ?>
<?php } ?>
<?php // end code ?>
</div>
<div id="bottom">
[img]<?php bloginfo('template_url'); ?>/images/bottom.gif[/img]" />
</div>
<?php do_action('wp_footer'); ?>
<?php // begin code for the javascript which is necessary for the dropdown menu to display properly in IE6 ?>
<script src="<?php bloginfo('template_url'); ?>/tools/js/dropdown.js" type="text/javascript"></script>
<?php // end code ?>
</div>
</body>
</html>
Good luck...
tony