Аналогичная проблема. Никак не могу найти решение. Неужели никто не поможет?
На сайте включен System-Cache и Web-Optimizer. После обнаружение регулярных разрывов решила код страницы сразу после очистки кэша и когда он поплывет...Сравнить и найти где код изменился. Я нашла.
Все манипуляции делала в Mozilla.
1. Очистила кэш, сохранила код. В том месте он выгялдел вот так:
<style type="text/css">
div.wrapper { margin: 0 auto; width: 100%;padding:0;}
#leftcol { width:250px;padding:0;}
#rightcol { width:0px;padding:0;}
#maincol { margin-left:250px;margin-right:0px;padding:0;}
#mainblock {margin-left:160px;margin-right:160px;padding:0;}
#banner-left { width:160px;padding:0;}
#banner-right { width:160px;padding:0;}
#moduleslider-size { height:300px;}
</style>
<script type="text/javascript" src="/templates/rt_replicant2_j15/js/rokslidestrip.js"></script>
2. Прошло время. Сайт поплыл и в этом месте он стал выглядет так:
<style type="text/css">
div.wrapper { margin: 0 auto; width: 100%;padding:0;}
#leftcol { width:250px;padding:0;}
#rightcol { width:0px;padding:0;}
#maincol { margin-left:250px;margin-right:0px;padding:0;}
#mainblock {margin-left:160px;margin-right:160px;padding:0;}
#banner-left { width:160px;padding:0;}
#banner-right { width:160px;padding:0;}
#moduleslider-size { height:300px;}
</style>
<!--[if lte IE 6]>
<link href="/templates/rt_replicant2_j15/css/template_ie6.php?cstyle=style6&bstyle=style3" rel="stylesheet" type="text/css" />
<[endif]-->
<script type="text/javascript" src="/templates/rt_replicant2_j15/js/roksameheight.js"></script>
<script type="text/javascript" src="/templates/rt_replicant2_j15/js/rokslidestrip.js"></script>
Вот так. То есть добавилось подключение IE в фаерфокс...И поэтому сайт стал плыть.
Код php выглядит так:
<?php if (rok_isIe7()) :?>
<!--[if IE 7]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/template_ie7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<?php endif; ?>
<?php if (rok_isIe6()) :?>
<?php
if ($tstyle != "custom") {
$bstyle_ie6 = $styles[$tstyle][0];
$cstyle_ie6 = $styles[$tstyle][1];
} else {
$bstyle_ie6 = $bstyle;
$cstyle_ie6 = $cstyle;
}
?>
<!--[if lte IE 6]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/template_ie6.php?cstyle=<?php echo $cstyle_ie6; ?>&bstyle=<?php echo $bstyle_ie6; ?>" rel="stylesheet" type="text/css" />
<![endif]-->
Ребята, помогите решить проблему. Замучалась уже просто с поисками.