Log in

View Full Version : Random Logos


tnguy3n
06-12-2004, 10:00 PM
Display Random Logos on header
modded by tnguy3n @ http://www.all4actions.net

Template mod: 1
- header

This mod displays random logo on form header, like one at vb.org . ^_^

Open header template,

FIND:
<img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />

REPLACE IT WITH:
<script>
var logo=new Array()
logo[0]='<img src="$stylevar[imgdir_misc]/logo1.gif" border="0" alt="$vboptions[bbtitle]" />'
logo[1]='<img src="$stylevar[imgdir_misc]/logo2.gif" border="0" alt="$vboptions[bbtitle]" />'
logo[2]='<img src="$stylevar[imgdir_misc]/logo3.gif" border="0" alt="$vboptions[bbtitle]" />'
logo[3]='<img src="$stylevar[imgdir_misc]/logo4.gif" border="0" alt="$vboptions[bbtitle]" />'
var displaylogo=Math.floor(Math.random()*(logo.length) )
document.write(logo[displaylogo])
</script>

If you have more than 4 logos, you can add more array to that script.
Upload logo1.gif , logo2.gif , logo3.gif , logo4, etc... to images/misc/ dir

Baptizer
07-02-2004, 03:23 PM
Great mod, thank you so much! Works perfectly!!! Surprised this isnt more popular, to be honest with you!

tnguy3n
07-03-2004, 05:52 PM
maybe most of ppl just have a unique logo on their site. anyway, add this following tag to prevent logo from not display in browsers that have javascript disabled.
BELOW </script>, add:
<noscript><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></noscript>

Zachery
07-03-2004, 05:56 PM
You could also use in the phpinclude

$rand = rand(1,X);

in the header change

<img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />

to

<img src="/path/to/image$rand.ext" border="0" alt="$vboptions[bbtitle]" />

Then make sure you have logo1.ext logo2.ext, and so forth :)

Jason McConnell
07-22-2004, 05:11 PM
I'm no coder... at all. And this one took me a lil bit to get going, but it works beautifully :D Thanks!

hollyboy
10-07-2004, 03:50 PM
If you have more than 4 logos, you can add more array to that script.
Upload logo1.gif , logo2.gif , logo3.gif , logo4, etc... to images/misc/ dir

what if the logos are on another server? :confused:

peterska2
10-07-2004, 04:02 PM
you would need to put the full url to them instead of the $stylevar one

eg http://www.yoursite.com/foo/bar/images/graphic.gif

imported_Skinny
10-07-2004, 08:51 PM
Wow! Excellent. This is just what I was looking for. Works great too! Thankyou :)

Gary King
07-26-2005, 07:22 PM
Works for 3.5 I suppose? :)

GreysAnatomy
05-26-2006, 10:46 PM
Worked like a charm, thanks! :D

ggiersdorf
05-27-2006, 10:02 AM
any way to add a time variable? I wanted this to logo to change each day or few hours?

burntire
02-18-2008, 01:46 AM
You could also use in the phpinclude

$rand = rand(1,X);

in the header change

<img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />

to

<img src="/path/to/image$rand.ext" border="0" alt="$vboptions[bbtitle]" />

Then make sure you have logo1.ext logo2.ext, and so forth :)

Any way to do this in 3.7?

GreysAnatomy
11-23-2008, 05:18 PM
I have added that code to my forum which runs on 3.7.4 and it worked. Thank you again!