DIR Return Create A Forum - Home
---------------------------------------------------------
Create A Forum - Support Forums
HTML https://support.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: General Support
*****************************************************
#Post#: 5173--------------------------------------------------
Customize Icons for Ezblocks?
DIR By: Griff Grof
Date: July 14, 2012, 1:37 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...?
#Post#: 5174--------------------------------------------------
Re: Customize Icons for Ezblocks?
DIR By: CreateAForum
Date: July 14, 2012, 1:43 pm
---------------------------------------------------------
Not possible at the moment.
#Post#: 5175--------------------------------------------------
Re: Customize Icons for Ezblocks?
DIR By: Griff Grof
Date: July 14, 2012, 2:03 pm
---------------------------------------------------------
Ok, thanks ;D
#Post#: 5178--------------------------------------------------
Re: Customize Icons for Ezblocks?
DIR By: Jaron
Date: July 14, 2012, 3:05 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 ---
<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>
--- End Code ---
*****************************************************
Page 1 of 1