View Single Post
  #1  
Old 28th March 2011, 20:36
Edgein's Avatar
Edgein Edgein is offline
Senior Member
 
Join Date: Sep 2008
Netherlands
Posts: 154
Smile Poster with glossy style
Go to
/public_html/include/templates/youre template/header.php

Find

PHP Code:
<link rel="shortcut icon" href="<?php echo $BASEURL?>/favicon.ico" type="image/x-icon" />
place under it

PHP Code:
<script type="text/javascript" src="scripts/glossy.js"></script> 
open details.php

Find

PHP Code:
        <td rowspan="'.$rowspan.'" align="center" valign="top" width="175">'.($torrent['t_image'] != '' ? '<a href="#" onclick="javascript:popImage(\''.$torrent['t_image'].'\',\'Image Preview\')"><img src="'.htmlspecialchars_uni($torrent['t_image']).'" border="0" width="175" height="175">' : '<img src="'.$BASEURL.'/'.$pic_base_url.'nopreview.gif" border="0">').'</a>'.($ratingsystem == 'yes' ? '<br /><br />'.$rating : '').'</td
and replase by

PHP Code:
        <td rowspan="'.$rowspan.'" align="center" valign="top" width="175">'.($torrent['t_image'] != '' ? '<a href="#" onclick="javascript:popImage(\''.$torrent['t_image'].'\',\'Image Preview\')"><img src="'.htmlspecialchars_uni($torrent['t_image']).'" class="glossy" border="0" width="175" height="175">' : '<img src="'.$BASEURL.'/'.$pic_base_url.'nopreview.gif" class="glossy" border="0">').'</a>'.($ratingsystem == 'yes' ? '<br /><br />'.$rating : '').'</td
ad this glossy style to other images

Find sommething like this in the page you like to have it

PHP Code:
<img src
and add this on it

PHP Code:
class="glossy" 
in total it looks like

PHP Code:
<img class="glossy" src
Attached Thumbnails
glossy.jpg  
Attached Files
File Type: rar glossy.rar (3.4 KB, 223 views)
Reply With Quote
The Following 8 Users Say Thank You to Edgein For This Useful Post:
csapagy (29th December 2011), eckeO5 (26th June 2011), gabkoko (31st March 2011), Marco (29th March 2011), mdxpro (14th August 2012), MeNe (11th January 2012), nicukent (29th November 2014), PAX (19th March 2012)