can i please get a code that will let me change an image in a select board only, i want to change the New Thread icon to another image..but only in a select board..
try this:
Edit where ti says 'OLD IMAGE' and 'NEW IMAGE'
<script>
var old = 'OLD IMAGE';
var new_i = 'NEW IMAGE';
for(i=0;i<get('img','tag').length;i++){
if(get('img','tag')[i].src.match(old)){
get('img','tag')[i].src = new_i;
}
}
</script>
Board Footers
ok is it the images url that you put in or ideas? mostly talking for the image im trying to replace, because i put in the two images and the old one is still there
ok is it the images url that you put in or ideas? mostly talking for the image im trying to replace, because i put in the two images and the old one is still there
You put in the URL.![]()
ok then it doesn't work...
Recopy, keep forgetting that I can't use 'new' as a variable name!:P
ok ty, it works now