Advertise Here

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Tonyyy

Pages: [1]
1
Guides and Tutorials / Re: [Guide] How to Use Your Own Rank Images
« on: June 25, 2016, 01:29:45 am »
Hello, I just made a forum and don't know much things.
Where to add there code lines to change the ranks pics ?



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>

2
General Support / How to add pics to Membergroups ?
« on: June 24, 2016, 10:49:52 am »
Forum Url: www.sarpserver.createaforum.com
Hello, I want to add my own images for membergroups, not to use the Star Images, showed there. What can I do ?

((Sorry for the bad grammar))

Pages: [1]