View Single Post
Old 05-08-2004, 06:48 PM   #2 (permalink)
MrFlux
Fluxing wildly...
 
MrFlux's Avatar
 
Location: Auckland, New Zealand
Find the two lines that look like this:
echo "<td align='center' >";?><a href="#" onClick="popupgalimage('imgs/<?php echo $file;?>', <?php echo "$width";?>, <?php echo "$height";?> ); return false" class="popimage"><? echo "<img src='imgs/thumbs/$file' class='popimage'></a></td>"."\n";

and change it to

PHP Code:
<?php


// only change this bit, ignore the <?php
echo "<td align='center' >";?><a href="#" onClick="popupgalimage('imgs/<?php echo $file;?>', <?php echo "$width";?><?php echo "$height";?> ); return false"  class="popimage"><? echo "<img src='imgs/thumbs/$file' class='popimage' style='filter:alpha(opacity=35)' onmouseover='pWidgets(this,100,60,30)' onmouseout='pWidgets(this,20,60,30)'></a></td>"."\n";


?>
__________________
flux (n.)
Medicine. The discharge of large quantities of fluid material from the body, especially the discharge of watery feces from the intestines.
MrFlux is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46