gaurawa
Jan-27-2010, 09:59 PM
I searched but didn't find a way to get 'Thumb' view instead of 'Tiny' views in category browsing unless the # of categories is less than 5.
What if I use a javascript to replace 'Tiny' with 'Thumb' ? Will that work reliably ?
something like:
function ReplaceTinyThumb() {
imgTags = document.getElementsByTagName("img");
for (i=0; i<imgTags.length; i++) {
old_src = imgTags[i].src ;
imgTags[i].src= old_src.replace("Tiny", "Thumb") ;
}
}
edited to add link for my galleries page: http://www.gaurawa.com/galleries
thanks,
Gaurawa
What if I use a javascript to replace 'Tiny' with 'Thumb' ? Will that work reliably ?
something like:
function ReplaceTinyThumb() {
imgTags = document.getElementsByTagName("img");
for (i=0; i<imgTags.length; i++) {
old_src = imgTags[i].src ;
imgTags[i].src= old_src.replace("Tiny", "Thumb") ;
}
}
edited to add link for my galleries page: http://www.gaurawa.com/galleries
thanks,
Gaurawa