View Single Post
  #3  
Old 7th December 2011, 20:18
eckeO5 eckeO5 is offline
Senior Member
 
Join Date: Jan 2011
P2P
Posts: 117
Talking
better later than never


take browse.php

may be on line 356 or whatever you find:

PHP Code:
    <a href="'.$seolink.'" target="_self" /><img src="'.$BASEURL.'/'.$pic_base_url.$table_cat.'/'.$c['image'].'" border="0" alt="'.$cname.'" title="'.$cname.'" /></a
change to:

PHP Code:
    <a href="'.$seolink.'" target="_self" /><img src="'.$BASEURL.'/'.$pic_base_url.$table_cat.'/'.$c['image'].'" border="0" alt="'.$cname.'" title="'.$cname.'" width="45" height="35" /></a
with that: width="45" height="35" / at the end thereīs possibility to resize your icons to whatever size you want to.


example:
Click the image to open in full size.

think thatīs the best way.

cheers eckeO5

Last edited by eckeO5; 7th December 2011 at 20:22. Reason: correction with an example
Reply With Quote