can someone please photoshop this for me...
#2
Just fyi bro, think you were the one asking about the resizing.. These pictures are huge so when the page first loads it goes off my screen and then resizes to fit about 1/2 the width of the thread.. I'm on a 14.1" laptop so I dunno if that's why I'll try it on my 17" laptop.
#3
Just fyi bro, think you were the one asking about the resizing.. These pictures are huge so when the page first loads it goes off my screen and then resizes to fit about 1/2 the width of the thread.. I'm on a 14.1" laptop so I dunno if that's why I'll try it on my 17" laptop.
#4
#5
It's running this javascript...
clientscript/resizevbimg.js
var vbimgcodeResizeMsg = 'Resized image! Click for original size!';
var vbimgcodeWidthMax = 500;
var vbimgcodeWidthSizeTo = 500;
var vbimgcodeClassName = 'vbimgcodelimit';
function vbImageResize() {
if (document.images.length) {
var docImg = document.images;
for ( var i = 0 ; i < docImg.length ; i++)
if (docImg[i].width > vbimgcodeWidthMax && docImg[i].id == 'vBCodeIMG') {
docImg[i].width = vbimgcodeWidthSizeTo;
docImg[i].title = vbimgcodeResizeMsg;
docImg[i].className = vbimgcodeClassName;
docImg[i].onclick = vbImagecodeWinOpen;
}
}
}
function vbImagecodeWinOpen(e) {
if( window.event )
window.open(window.event.srcElement.src,'vbIMG','m enubar=no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
else
window.open(e.target.src,'vbIMG','menubar=no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
}
clientscript/resizevbimg.js
var vbimgcodeResizeMsg = 'Resized image! Click for original size!';
var vbimgcodeWidthMax = 500;
var vbimgcodeWidthSizeTo = 500;
var vbimgcodeClassName = 'vbimgcodelimit';
function vbImageResize() {
if (document.images.length) {
var docImg = document.images;
for ( var i = 0 ; i < docImg.length ; i++)
if (docImg[i].width > vbimgcodeWidthMax && docImg[i].id == 'vBCodeIMG') {
docImg[i].width = vbimgcodeWidthSizeTo;
docImg[i].title = vbimgcodeResizeMsg;
docImg[i].className = vbimgcodeClassName;
docImg[i].onclick = vbImagecodeWinOpen;
}
}
}
function vbImagecodeWinOpen(e) {
if( window.event )
window.open(window.event.srcElement.src,'vbIMG','m enubar=no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
else
window.open(e.target.src,'vbIMG','menubar=no, toolbar=no, location=no, directories=no, fullscreen=no, titlebar=yes, hotkeys=no, status=no, scrollbars=yes, resizable=yes');
}
Trending Topics
#8
go to www.tinypic.com ...host it there, and copy over the link it provides...
#15