У меня на сайте http://super-tourism.ru/ (Wordpress)по бокам плавают облака. Не могу их убрать. В
style.css нашла такой код
/* Animated images */
#sun { position: fixed; top: 0pt; right: -1%; z-index: 10; }
#plane { position: fixed; top: 550px; left: 70%; z-index: 30; }
#cloud {position: fixed; top: 315px; left: 87%; z-index: 60; }
#cloud2 { position: fixed; top: 375px; right: 85%; z-index: 40; }
#balloon { position: fixed; top: 185px; right: 92%; z-index: 50; }
#content { width:100%; width:expression(document.body.clientWidth > 800 ? "100%" : "800px"); overflow:hidden; margin-top:-190px; position:absolute;}
#container1 { width:100%; float:left; margin-right:-245px; }
#container2 { background:#000000; margin-right:245px; }
#container3 { width:100%; float:right; margin-left:-279px; }
#left_bot { background: url(images/bot_lt.gif) no-repeat; width:279px; float:left; height:278px; position:absolute; z-index:100;}
#center { background: url(images/bot_mid.gif) repeat-x bottom; height:278px; margin-left:200px; position:relative; z-index:100;}
#right_bot { background: url(images/bot_rt.gif) no-repeat; float:right; width:245px; height:278px; position:relative; z-index:100;}
Удалила его, а также удалила картинки облаков. Ничего не получилось - появляется белый квадратик внизу сайта вместо облаков.
Если посмотреть код главной страницы, то можно увидеть такой скрипт, как я понимаю его тоже надо удалять, но найти в Редакторе шаблона я его не могу...
Подскажите, кто что знает?
[TABLE]
[TR][TD]<script type="text/javascript"> [/TD][/TR]
[TR][TD][/TD][TD] var scroller; [/TD][/TR]
[TR][TD][/TD][TD] [/TD][/TR]
[TR][TD][/TD][TD]window.addEvents({'domready':function(){ [/TD][/TR]
[TR][TD][/TD][TD] if(!window.ie6){ [/TD][/TR]
[TR][TD][/TD][TD] var sun=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_sun.gif','id':'sun'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var cloud=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_cloudright.gif','id':'cloud'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var plane=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_plane.gif','id':'plane'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var cloud2=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_cloudleft.gif','id':'cloud2'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var balloon=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_baloon.gif','id':'balloon'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var sun_style=new Fx.Style($('sun'),'top',{duration:2500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var cloud_style=new Fx.Style($('cloud'),'top',{duration:2500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var plane_style=new Fx.Style($('plane'),'top',{duration:3500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var cloud2_style=new Fx.Style($('cloud2'),'top',{duration:2500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var balloon_style=new Fx.Style($('balloon'),'top',{duration:3500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] scroller=function(){ [/TD][/TR]
[TR][TD][/TD][TD] var distance=(window.getScrollTop()/(window.getScrollHeight()-window.getHeight())); [/TD][/TR]
[TR][TD][/TD][TD] sun_style.stop().start($('sun').getCoordinates().top,(0-(distance*275))); [/TD][/TR]
[TR][TD][/TD][TD] cloud_style.stop().start($('cloud').getCoordinates().top,(315-(distance*415))); [/TD][/TR]
[TR][TD][/TD][TD] plane_style.stop().start($('plane').getCoordinates().top,(550-(distance*600))); [/TD][/TR]
[TR][TD][/TD][TD] cloud2_style.stop().start($('cloud2').getCoordinates().top,(475-(distance*475))); [/TD][/TR]
[TR][TD][/TD][TD] balloon_style.stop().start($('balloon').getCoordinates().top,(185-(distance*180)));} [/TD][/TR]
[TR][TD][/TD][TD] scroller.periodical(100);} [/TD][/TR]
[TR][TD][/TD][TD]},'resize':function(){ [/TD][/TR]
[TR][TD][/TD][TD] if(!window.ie6){ [/TD][/TR]
[TR][TD][/TD][TD] if($('cloud'))$('cloud').setStyle('right',((window.getWidth()-$('main').getCoordinates().right)-65)+'px');}}}); [/TD][/TR]
[TR][TD][/TD][TD] EventCenter.fire('domready'); [/TD][/TR]
[TR][TD][/TD][TD]</script>[/TD][/TR]
[/TABLE]
style.css нашла такой код
/* Animated images */
#sun { position: fixed; top: 0pt; right: -1%; z-index: 10; }
#plane { position: fixed; top: 550px; left: 70%; z-index: 30; }
#cloud {position: fixed; top: 315px; left: 87%; z-index: 60; }
#cloud2 { position: fixed; top: 375px; right: 85%; z-index: 40; }
#balloon { position: fixed; top: 185px; right: 92%; z-index: 50; }
#content { width:100%; width:expression(document.body.clientWidth > 800 ? "100%" : "800px"); overflow:hidden; margin-top:-190px; position:absolute;}
#container1 { width:100%; float:left; margin-right:-245px; }
#container2 { background:#000000; margin-right:245px; }
#container3 { width:100%; float:right; margin-left:-279px; }
#left_bot { background: url(images/bot_lt.gif) no-repeat; width:279px; float:left; height:278px; position:absolute; z-index:100;}
#center { background: url(images/bot_mid.gif) repeat-x bottom; height:278px; margin-left:200px; position:relative; z-index:100;}
#right_bot { background: url(images/bot_rt.gif) no-repeat; float:right; width:245px; height:278px; position:relative; z-index:100;}
Удалила его, а также удалила картинки облаков. Ничего не получилось - появляется белый квадратик внизу сайта вместо облаков.
Если посмотреть код главной страницы, то можно увидеть такой скрипт, как я понимаю его тоже надо удалять, но найти в Редакторе шаблона я его не могу...
Подскажите, кто что знает?
[TABLE]
[TR][TD]<script type="text/javascript"> [/TD][/TR]
[TR][TD][/TD][TD] var scroller; [/TD][/TR]
[TR][TD][/TD][TD] [/TD][/TR]
[TR][TD][/TD][TD]window.addEvents({'domready':function(){ [/TD][/TR]
[TR][TD][/TD][TD] if(!window.ie6){ [/TD][/TR]
[TR][TD][/TD][TD] var sun=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_sun.gif','id':'sun'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var cloud=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_cloudright.gif','id':'cloud'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var plane=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_plane.gif','id':'plane'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var cloud2=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_cloudleft.gif','id':'cloud2'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var balloon=new Element('img',{'src':'http://super-tourism.ru/wp-content/themes/Blogus/images/back_baloon.gif','id':'balloon'}).inject(document.body); [/TD][/TR]
[TR][TD][/TD][TD] var sun_style=new Fx.Style($('sun'),'top',{duration:2500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var cloud_style=new Fx.Style($('cloud'),'top',{duration:2500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var plane_style=new Fx.Style($('plane'),'top',{duration:3500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var cloud2_style=new Fx.Style($('cloud2'),'top',{duration:2500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] var balloon_style=new Fx.Style($('balloon'),'top',{duration:3500,transition:Fx.Transitions.Quad.easeOut}); [/TD][/TR]
[TR][TD][/TD][TD] scroller=function(){ [/TD][/TR]
[TR][TD][/TD][TD] var distance=(window.getScrollTop()/(window.getScrollHeight()-window.getHeight())); [/TD][/TR]
[TR][TD][/TD][TD] sun_style.stop().start($('sun').getCoordinates().top,(0-(distance*275))); [/TD][/TR]
[TR][TD][/TD][TD] cloud_style.stop().start($('cloud').getCoordinates().top,(315-(distance*415))); [/TD][/TR]
[TR][TD][/TD][TD] plane_style.stop().start($('plane').getCoordinates().top,(550-(distance*600))); [/TD][/TR]
[TR][TD][/TD][TD] cloud2_style.stop().start($('cloud2').getCoordinates().top,(475-(distance*475))); [/TD][/TR]
[TR][TD][/TD][TD] balloon_style.stop().start($('balloon').getCoordinates().top,(185-(distance*180)));} [/TD][/TR]
[TR][TD][/TD][TD] scroller.periodical(100);} [/TD][/TR]
[TR][TD][/TD][TD]},'resize':function(){ [/TD][/TR]
[TR][TD][/TD][TD] if(!window.ie6){ [/TD][/TR]
[TR][TD][/TD][TD] if($('cloud'))$('cloud').setStyle('right',((window.getWidth()-$('main').getCoordinates().right)-65)+'px');}}}); [/TD][/TR]
[TR][TD][/TD][TD] EventCenter.fire('domready'); [/TD][/TR]
[TR][TD][/TD][TD]</script>[/TD][/TR]
[/TABLE]