Author Topic: Pic Security  (Read 160162 times)

0 Members and 2 Guests are viewing this topic.

Offline d1eter

  • Newbie
  • *
  • Posts: 42
    • View Profile
Re: Pic Security
« Reply #105 on: September 09, 2008, 02:34:17 AM »
I think this is what you are looking for:
mask the {media_src} url


thank's very much...
how could I miss that one..
 :oops:

Offline chithanh119

  • Pre-Newbie
  • Posts: 7
    • View Profile
Re: Pic Security
« Reply #106 on: September 24, 2008, 10:37:15 AM »
Thank Vano!

Offline madonna007

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: Pic Security
« Reply #107 on: November 25, 2008, 09:37:19 AM »
OK,that is useful for me..





.

Offline d1eter

  • Newbie
  • *
  • Posts: 42
    • View Profile
Re: Page 4
« Reply #108 on: February 04, 2010, 06:28:10 AM »


Quote
Quote
martrix wrote:
It would be very nice, if somebody could write how to add this nonono.gif modification to 4images and how to mask the {media_src} url.
it's pretty much simple 
open templates/<yourtemplate>/media/jpg.html (this example for jpg.html template, but u'll need do same thing for all others templates for images)
Replace
Code: [Select]
<img src="{media_src}" border="1" alt="{image_name}"{width_height} />
with:
Code: [Select]

<table style="background: url({media_src}) no-repeat; background-position: center center" cellpadding="0" cellspacing="0">
  <tr>
    <td><img src="{template_url}/images/spacer.gif" border="1" alt="{image_name}"{width_height} /></td>
  </tr>
</table>


asume that u have spacer.gif file in /templates/<yourtemplate>/images/ folder.

V@no..,
how to get the same effect to thumbnail images..?
right-click and all it gets is a spacer.gif file and link.

thanx!