BURADAKİ SİTEDE sliderdaki siyah planı kaldırmak istiyorum ama kodu çözemedim. nereyi iptal etmem gerekli bilen varsa yardımcı olabilir mi?
<?php if ($Ayar["Slider"]=="Goster") { 
			 ?>
                <div class="header">
					<!-- jquery slider. To customize the slider functionality edit the custom.js file -->
					        <div class="slider-wrapper theme-default">
								<div class="ribbon"></div>
                                
								<div id="slider" class="nivoSlider">
								
	   <?php 
	   $slaytbaglanti=@mysql_query("select * from slayt where Durum='Aktif' and Dil='$site_dil' order by Sira asc LIMIT 8");	
	   $no = 1;
	   while($slayt=@mysql_fetch_array($slaytbaglanti)){ 
	   
	   ?>
		<a href="<?php echo $slayt[Link];?>" target="_<?php echo $slayt[Secim];?>"><img src="<?php echo $SiteAdi;?>/Images/slides/<?php echo $slayt[Resim];?>" title="#caption<?php echo $no;?>"/></a>
		
		<?php
	    $no++;
		}
		?> 
                                    
								</div>
        <?php 
	    $slaytbaglanti=@mysql_query("select * from slayt where Durum='Aktif' and Dil='$site_dil' order by Sira asc LIMIT 8");	
	    $no = 1;
		while($slayt=@mysql_fetch_array($slaytbaglanti)){ 
	    ?>
                                <div id="caption<?php echo $no;?>" class="nivo-html-caption">
									<div>
										<p class="nivo-title"><?php echo $slayt[Baslik];?></p>
										<p><?php echo $slayt[Aciklama];?></p>
										<p> <?php if(empty($slayt["Link"])){ ?><?php }else{ ?> <a href="<?=$slayt[Link];?>" target="_<?=$slayt[Secim];?>" class="csbutton normal">devamı</a><?php } ?></p>
                                        
                                       </div>  
									</div>
                          <?php $no++; } ?>
							</div>
							<div class="slide-area-nivo"></div>
					</div>
					<?php }?> 
					<script type="text/javascript">
	$(window).load(function() {
		$('#slider').nivoSlider({
				effect:'fold',
				customChange: function(){
					
				}
		});
	});
	</script>