The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

More than one logo?

5 posters

Go down

More than one logo? Empty More than one logo?

Post by paint August 23rd 2009, 5:43 pm

Is it possible to create a rotation of logos when a page is refreshed, and so on? Could it be done using the templates? Basically, I want the logo image to change when refreshed.
paint
paint
Forumember

Male Posts : 686
Reputation : 3
Language : English

Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by MrMega August 23rd 2009, 5:52 pm

It's not possible on forumotion yet, but it's been asked and suggested already lots of times. Wink
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by paint August 23rd 2009, 6:03 pm

Wow... I already made the logos in advance. Whatever... So this code is useless?

Code:
<html>
  <head>
  <title>Image Rotate
  </head>
 
  <body>
  <img src="" name="Rotating" id="Rotating1" width=100 height=100>
  <img src="" name="Rotating" id="Rotating2" width=100 height=100>
 
 
  <script language="JavaScript">
  var ImageArr1 = new Array("Picture(3).jpg","Picture(1).jpg","Picture(2).jpg");
  var ImageHolder1 = document.getElementById('Rotating1');
 
  var ImageArr2 = new Array("Picture(5).jpg","Picture(6).jpg","Picture(7).jpg");
  var ImageHolder2 = document.getElementById('Rotating2');
 
  function RotateImages(whichHolder,Start)
  {
     var a = eval("ImageArr"+whichHolder);
     var b = eval("ImageHolder"+whichHolder);
     if(Start>=a.length)
        Start=0;
     b.src = a[Start];
     window.setTimeout("RotateImages("+whichHolder+","+(Start+1)+")",1500);
  }
 
  RotateImages(1,0);
  RotateImages(2,0);
 
  </script>
 
  </body>
  </html>
paint
paint
Forumember

Male Posts : 686
Reputation : 3
Language : English

Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by AiKirika August 23rd 2009, 6:41 pm

im not sure...
but maybe you can put that into the CSS sheet...

display > picture managment > advanced > CSS sheet
AiKirika
AiKirika
Forumember

Female Posts : 480
Reputation : 1
Language : english, german

Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by Mystic_gohan2 August 23rd 2009, 7:26 pm

^^ he uses template .
avatar
Mystic_gohan2
Forumember

Posts : 700
Reputation : 30
Language : English

Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by Guest August 23rd 2009, 8:33 pm

Create an HTML file with the above HTML code, then use an iframe to display your HTML. If you put the iframe HTML tag in the site description, the result should be exactly what you want.

You can also accomplish this by using an external javascript file and putting a script HTML tag in the site description.
avatar
Guest
Guest


Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by paint August 29th 2009, 12:58 am

Forget it. I'll probably make this into a suggestion topic.
paint
paint
Forumember

Male Posts : 686
Reputation : 3
Language : English

Back to top Go down

More than one logo? Empty Re: More than one logo?

Post by silvergirl59 August 29th 2009, 3:59 am

You can try making your logos into a gif so that every few seconds the logo will change
avatar
silvergirl59
Forumember

Posts : 58
Reputation : 0
Language : english

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum