Advertise Here

Author Topic: Where can I update these pics  (Read 3046 times)

0 Members and 1 Guest are viewing this topic.

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Where can I update these pics
« on: March 09, 2008, 03:13:29 pm »


Like I wanna change those pics to something else..Is their anyway i could do that?

I tried to find them in manage styles> Cuztimiz images....And I dident find em

I really wanna change them because they don't go with my lay out

I'm talking about those pics
lock topic
hot topic..ect..

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #1 on: March 09, 2008, 03:16:08 pm »
You could try this to swap the images:
Swap Images Generator and Guide
   

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #2 on: March 09, 2008, 03:19:38 pm »
is it harmfull..like can it hurt my forum's in anyway?

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #3 on: March 09, 2008, 03:22:12 pm »
is it harmfull..like can it hurt my forum's in anyway?

The generator will make the code for you.  So long as you are careful that you copy the entire code, and careful how you paste it into your footer then no it wont cause you a problem.  Ive used it, it works well.   You need the urls of the existing images (right mouse on em, click properties) and the urls of your images.   There is a link to a guide inside that thread that shows you how to use it.

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #4 on: March 09, 2008, 05:12:22 pm »
Ok I did it but the pitcure's diden't change......here's the code I got

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

img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/my_normal_post.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/f_norm_no_dot.png" ]
img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/normal_post.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/f_norm-1.png" ]
img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/hot_post.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/f_hot_no.png" ]
img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/veryhot_post.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/f_hot.png" ]
img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/normal_poll.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/f_poll.png" ]
img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/quick_lock.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/lock-1-1.png" ]

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>

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #5 on: March 09, 2008, 05:31:13 pm »
Austin hi..  Ill take a look at it..  give me a few minutes here though

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #6 on: March 09, 2008, 05:34:54 pm »
ahhh   I can see it already.   

Austin when you go to the code generator page put the image url for the OLD image  (the one on your forum NOW)  in where it says Old image.     Put the url for YOUR image (the one you want to swap it with) where it says New.       You have only your photobucket urls in it.. 

or you can do it manually and edit your code.   Each one of those lines should be like this:

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




Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #7 on: March 09, 2008, 05:41:13 pm »
i dont get it..diden't i do that?

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #8 on: March 09, 2008, 05:43:29 pm »
Look at the lines in the code where the graphic image urls are.. 

Here is one of them:

Code: [Select]
   img_b[img_b.length++] = [ "http://i246.photobucket.com/albums/gg118/khanboy21/my_normal_post.gif" , "http://i246.photobucket.com/albums/gg118/khanboy21/f_norm_no_dot.png"     

See how it has two photobucket urls there?
The first one needs to be the image that is on your forum.    When the code finds that image it will swap it with the second image in that code = your image url from photobucket

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #9 on: March 09, 2008, 05:49:35 pm »
then how do I get the url from my forum...I don't know where it is tho

Also I uploaded the pics that are on my forum right now from photobucket.

thnx for helping me :)

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #10 on: March 09, 2008, 05:53:16 pm »
right mouse click on the image,  then click propertys.   You will see the url there.   You can copy it and paste it into the code.     Do that for each one of the images.

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #11 on: March 09, 2008, 05:55:05 pm »
I'll try it

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #12 on: March 09, 2008, 05:57:03 pm »
I right clicked and went to properties and then saw it's location and the url's are all the same

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: Where can I update these pics
« Reply #13 on: March 09, 2008, 05:58:11 pm »
er go check those again..   they arent the same  ;)

Offline Austin3:16 & Khanboy21

  • SMF For Free Full Member
  • *
  • Posts: 120
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: Where can I update these pics
« Reply #14 on: March 09, 2008, 06:08:28 pm »
Ok I did it but if you follow this link you will see that one of them did not change...Not from the bottom legend put if you go down to maybe the third topic you will see that it is still the same

PS: it has 2 page's of reply's..could that be a problem? And if so how can I change that image

 

Related Topics

  Subject / Started by Replies Last post
Admin Update

Started by Prasad007 Suggestions

1 Replies
3206 Views
Last post October 28, 2005, 06:46:51 pm
by sop
0 Replies
2549 Views
Last post November 21, 2005, 02:28:04 pm
by SMF For Free
1 Replies
1398 Views
Last post May 31, 2008, 10:28:59 pm
by SMF For Free
5 Replies
2065 Views
Last post June 29, 2008, 01:00:39 pm
by ray
1 Replies
1248 Views
Last post April 29, 2010, 12:37:58 am
by simply sibyl