HI scootertopia,
I assume you're meaning they are hotlinking your images ?
If its' the site in your sig, you're on apache, so .htaccess will do the trick.
try this:
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://domain.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
note: replace domain.com with your domain
To create an .htaccess file...
open notepad and save as htaccess.txt (you won't be able to save as .htaccess)
put the code in there as is, replacing domain.com with your own.
upload in ASII to your root directory and change the name to .htaccess