ho provato a giocare con l'overflow, ma niente da pare...questo č quello che ho:
codice:
<style type="text/css">
#marqueecontainer{
background-color:trasparent;
position: relative;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#000000;
width: 145px; /*marquee width */
height: 110px; /*marquee height */
overflow: hidden;
border: 0px solid silver;
padding: 2px;
padding-left: 4px;
}
</style>
<div align="center" id="marqueecontainer" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">
<div id="vmarquee" style="width: 98%;position:relative">
<?php
$file = implode('\n',array_reverse(file('../public/bacheca.txt')));
$stringa = explode('\n',$file);
foreach($stringa as $value){
$value = str_replace("\\","",$value);
echo $value;
}
?>
</div>
</div>
questo č quanto....
Grazie....