Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 18 users online :: 0 Registered, 0 Hidden and 18 Guests :: 2 Bots
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
Randomize your forum banner
Page 2 of 2 • Share
Page 2 of 2 • 1, 2
First topic message reminder :
This simple trick will allow you to display multiple banners on your forum at random. Only one banner will be shown at once, but it will be different each time you change or reload the page. This trick will work for any forum version.
Installation
Go to Administration Panel > Modules > JavaScript codes management, and create a new script.
Title : Random banner
Placement : In all the pages
Paste the following code :
Modifications
There's only one simple modification for you to make. At the top of the script you'll see and array of banners :
You can replace or delete these image URLs, and add your own. Multiple banners should be separated by a comma, and the banner URL should be between quotes ! Here's an example of only two banners :
As you can see, you can have as little or as many banners as you want ! If you have any comments or questions, you may leave them below. Have fun !
This simple trick will allow you to display multiple banners on your forum at random. Only one banner will be shown at once, but it will be different each time you change or reload the page. This trick will work for any forum version.
Installation
Go to Administration Panel > Modules > JavaScript codes management, and create a new script.
Title : Random banner
Placement : In all the pages
Paste the following code :
- Code:
$(function() {
var banners = [
'http://i38.servimg.com/u/f38/18/21/60/73/b010.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b110.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b210.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b310.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b410.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b510.png'
],
logo = document.getElementById('i_logo') || document.getElementById('logo') || document.getElementById('pun-logo');
(logo.tagName == 'IMG' ? logo : logo.firstChild).src = banners[Math.floor(Math.random() * banners.length)];
});
Modifications
There's only one simple modification for you to make. At the top of the script you'll see and array of banners :
- Code:
var banners = [
'http://i38.servimg.com/u/f38/18/21/60/73/b010.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b110.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b210.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b310.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b410.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b510.png'
],
You can replace or delete these image URLs, and add your own. Multiple banners should be separated by a comma, and the banner URL should be between quotes ! Here's an example of only two banners :
- Code:
var banners = [
'http://i38.servimg.com/u/f38/18/21/60/73/b010.png',
'http://i38.servimg.com/u/f38/18/21/60/73/b110.png'
],
As you can see, you can have as little or as many banners as you want ! If you have any comments or questions, you may leave them below. Have fun !
Notice |
Tutorial written by Ange Tuteur. Reproduction not permitted without consent from the author. |
Last edited by Ange Tuteur on Tue 15 Mar 2016, 06:21; edited 1 time in total
hello after looking in to this code im still not 100% sure what its for so i have now removed it and now the code gave is working fine on the forum so the code making the problem was removed.
Thank you all for your help
my problems solved
Thank you all for your help
my problems solved
- GuestGuest
No, problem @Ape. You're welcome
- Sponsored content
Page 2 of 2 • 1, 2
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 2 of 2
Permissions in this forum:
You cannot reply to topics in this forum