It is very strange - I've checked it at our demo site:
http://demo.gavick.com/joomla15/apr2010/ and I don't see any problems of Firefox 14. But IE6 is now history so you can remove a code responsible for these messages and messing CSS code.
Please open file layouts/default.php and remove following lines:
- Code: Select all
<?php if($this->isIE6() && $this->_tpl->params->get('ie6bar') == 1) : ?>
<div id="infobar"><a href="http://browsehappy.com"><?php echo JText::_('IE6_BAR'); ?></a></div>
<?php endif; ?>
And please open file: layouts/blocks/head.php and remove following lines:
- Code: Select all
<?php if (!$this->isIE6()) : ?>
and:
- Code: Select all
<?php else : ?>
<link href="<?php echo $this->templateurl(); ?>/css/ie6.css" rel="stylesheet"/>
<?php endif; ?>