I sympathize on the photos. I like having them, but I prefer the way Avocado posts them; i.e., embed the first photo and provide links to the rest. I wonder if there's a way for the forum to do that automagically?
BTW, one of the best hacks I have is a javascript thingy that automatically loads linked photos when I click it. Someone on the autosport forums posted it years ago and it works like a charm for me. Just make a bookmark and paste this in as the address field...
Code: Select all
javascript:%20(function%20()%20%7B%20function%20I(u)%20%7B%20var%20t%20=%20u.split('.'),%20e%20=%20t%5Bt.length%20-%201%5D.toLowerCase();return%20%7Bgif:%201,jpg:%201,jpeg:%201,png:%201,mng:%201%7D%5Be%5D%7Dfunction%20hE(s)%20%7Breturn%20s.replace(/&/g,%20'&').replace(/%3E/g,%20'%3E').replace(/%3C/g,%20'%3C').replace(/%22/g,%20'%22');%7Dvar%20q,%20h,%20i;for%20(i%20=%200;%20q%20=%20document.links%5Bi%5D;%20++i)%20%7Bh%20=%20q.href;if%20(h%20&&%20I(h))%7Bq.innerHTML%20=%20'%3Cimg%20src=%22'%20+%20hE(h)%20+%20'%22%20/%3E';%20%7D%7D%7D)()
Here's another one that will resize big photos to your fit your browser window...
Code: Select all
javascript:%20(function%20()%20%7B%20%20%20%20var%20margin%20=%20220;%20%20%20%20function%20getWidth()%20%7B%20%20%20%20%20%20%20%20var%20myWidth%20=%200;%20%20%20%20%20%20%20%20if%20(typeof(%20window.innerWidth%20)%20==%20'number'%20)%20%7B%20%20%20%20%20%20%20%20%20%20%20%20myWidth%20=%20window.innerWidth;%20%20%20%20%20%20%20%20%7D%20%20%20%20%20%20%20%20else%20if%20(document.documentElement%20&&%20(%20document.documentElement.clientWidth)%20)%20%20%20%20%20%20%20%20%7B%20%20%20%20%20%20%20%20%20%20%20%20myWidth%20=%20document.documentElement.clientWidth;%20%20%20%20%20%20%20%20%7D%20%20%20%20%20%20%20%20return%20myWidth;%20%20%20%20%7D%20%20%20%20%20%20%20%20var%20ss%20=%20document.styleSheets%5Bdocument.styleSheets.length-1%5D;%20%20%20%20var%20l=0;%20%20%20%20if%20(ss.cssRules)%20%7B%20%20%20%20%20%20l%20=%20ss.cssRules.length;%20%20%20%20%7D%20else%20if%20(ss.rules)%20%7B%20%20%20%20%20%20l%20=%20ss.rules.length;%20%20%20%20%7D%20%20%20%20if%20(ss.insertRule)%20%7B%20%20%20%20%20%20ss.insertRule('img%20%7B%20max-width:%20'%20+%20(getWidth()%20-%20margin)%20+%20'px;%20%7D',l);%20%20%20%20%7D%20else%20if%20(ss.addRule)%20%7B%20%20%20%20%20%20ss.addRule('.postcolor',%20'max-width:%20'%20+%20(getWidth()%20-%20margin)%20+%20'px;',%20l);%20%20%20%20%7D%7D)()
I keep both bookmarks on my favorites bar so they're only a click away.