Create A Forum - Support Forums

Support => General Support => Topic started by: Griff Grof on July 14, 2012, 06:37:56 pm

Title: Customize Icons for Ezblocks?
Post by: Griff Grof on July 14, 2012, 06:37:56 pm
Hiya,


Just wondering if you can customize the icons for Ezblocks (eg current ones include book, brick bug etc etc)


Is there a way to do this, and add things to them? Such as a magnify glass for the Search Ezblock...?
Title: Re: Customize Icons for Ezblocks?
Post by: CreateAForum on July 14, 2012, 06:43:35 pm
Not possible at the moment.
Title: Re: Customize Icons for Ezblocks?
Post by: Griff Grof on July 14, 2012, 07:03:27 pm
Ok, thanks  ;D
Title: Re: Customize Icons for Ezblocks?
Post by: Seldom Fail on July 14, 2012, 08:05:51 pm
I think I may have a solution for this using the replace images code.

What you'll do is right click the image you want to replace and find Copy Image Location

Paste that in place of the words "OLD IMAGE URL" in the code below.

Do the same thing for the image you want to use in it's place, and put it's URL in the "NEW IMAGE URL" portion of the code.
 If it is not already online, you'll need to upload it to a image hosting site such as TinyPic

You can do this for as many images as you'd like by copying this line: img_b[img_b.length++] = ["OLD IMAGE URL" , "NEW IMAGE URL"]
Add it in right below the line that you changed before.

Put that into your footers (Admin > Style Manager > Headers and Footers)

Code: [Select]
<script type='text/javascript'>
/*
Change Any Image On Page
Created by iFusion
*/
var img_b = new Array();

img_b[img_b.length++] = ["OLD IMAGE URL" , "NEW IMAGE URL"]

var all_images = document.getElementsByTagName('IMG');
for(i=0;i<all_images.length;i++){
for(j=0;j<img_b.length;j++){
   if(all_images[i].src == img_b[j][0]){
     all_images[i].src = img_b[j][1];
}}}
</script>