ita, did you get your question answered? I thought about it, and I think the easiest way is to add a new layer, select the text, and fill the new layer in the selected text area with the gradient and delete the text layer.
Harmony ,'First Date'
Buffistechnology 2: You Made Her So She Growls?
Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!
Polgara suggested I change the properties of the entire layer and add a gradient. It worked out.
But thanks!
tommy, could you send your ZIP code to my profile addy? It'll help figuring shipping.
.htaccess gurus in the house?
What if I want to serve up one particular (perhaps large in dimension, small in size) image to one particular (repeatedly troublesome) domain?
I have a pretty standard .htaccess file that looks much like:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(.*\\.)?buffistas.org/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.*\\.)?worldcrossing.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.*\\.)?provocateuse.com/.*$ [NC]
RewriteRule .*\\.(jpg|jpeg|gif)$ [link] [R,NC]
I'd like everyone other than fuckers.com to get blocked.gif. They get realhuge.gif.
I have no idea if this will actually work but you could try:
Block traffic from a single referrer:
RewriteEngine onfurther reading has told me you don't need to add this line b/c the rewrite engine is already turned on--unless you have this at the top of the page, then delete the other entry :) # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} fuckers\.com [NC] RewriteRule .*\. (jpg|jpeg|gif)$ [link] [R,NC]
This comes from -> [link] ... and all I've done is add in the reference to your image and the other site.
and they say:
Blocking users or sites that originate from a particular domain is another useful trick of .htaccess. Lets say you check your logs one day, and see tons of referrals from a particular site, yet upon inspection you can't find a single visible link to your site on theirs. The referral isn't a "legitimate" one, with the site most likely hot linking to certain files on your site such as images, .css files, or files you can't even make out. Remember, your logs will generate a referrer entry for any kind of reference to your site that has a traceable origin.
So, does the syntax work that I can put the other conditions and rules after, and they won't be affected?
I couldn't say for sure but it seems a fair bet that if that goes first, fuckers.com reads it and is redirected to realhuge.gif, while all other sites read it, ignore it b/c it doesn't affect them, and go onto the next bit where they are affected.
If you want, you can add it to your .htaccess file but change "fuckers" to "eviljimi" and then I'll try hotlinking to an image and report back what I see.
Firefox 1.0.5 has been released. [link]
Blargh. Those two lines, either at the start (under Rewrite Engine On) or at the very end, break my ability to see images from my own domain.
I swear, logic doesn't live here anymore.