PDA

View Full Version : [InvisionFree] Just One Question...



User43
13-03-2007, 06:45 PM
Hi, im making an invisionfree forum (not habbo fansite) and i was just wondering how i get multiple skins up on the site? Or is it not possible with invision free.

If not how much is IPB?

Nemo
13-03-2007, 07:06 PM
you can get skins, search on google u get some good 1s ;)

F32
13-03-2007, 07:16 PM
you can get skins, search on google u get some good 1s ;)
You mis-read his post.

LondonGoons
13-03-2007, 07:31 PM
He asked if you can have mulitple skins like vbulletiin and you can change it ;]

And yes i think you can

Nemo
13-03-2007, 08:04 PM
oh right my bad, im not too sure =p

Yggdrasill
13-03-2007, 08:20 PM
yes, you can get the code for the Skin selector..

http://forums.ifskinzone.net/index.php?showtopic=3313

that's what I use. Upload the CSS to notepad in .txt and host it and put the URL where it asks you to..

benjirofl
13-03-2007, 08:25 PM
yes, you can get the code for the Skin selector..

http://forums.ifskinzone.net/index.php?showtopic=3313

that's what I use. Upload the CSS to notepad in .txt and host it and put the URL where it asks you to..
Could you get me it and send me it over msn?

Yggdrasill
13-03-2007, 08:27 PM
that is the code..

benjirofl
13-03-2007, 08:28 PM
I cant view it, can you send me it. for +reppy

Yggdrasill
13-03-2007, 08:32 PM
I have just finished developing The Supreme Skin Selector containing some of the best (I think) skins here at The IF Skin Zone.

A demo of the skin changer can be found here (http://s2.invisionfree.com/skinselectordemo/index.php)?

(Skins may take a whole to load).

The code is as follows:

CODE <center>
Skin selector developed by XJONX. Skins created by various members of the <a href="http://www.ifskinzone.net" target="_blank">IF Skin Zone</a>.<br />
<form>
<select onChange="changeskin(this.options[this.selectedIndex].value); window.location.reload();">
<option>Change Skin
<option value="IF Default"> InvisionFree Default
<option value="Blue Ash"> Blue Ash
<option value="Blue Aura"> Blue Aura
<option value="Blue Tech"> Blue Tech
<option value="Cool Blue"> Cool Blue
<option value="Dark Skyline"> Dark Skyline
<option value="Final Fantasy"> Final Fantasy
<option value="Matrix Malfunction"> Matrix Malfunction
<option value="Midevil Darkness"> Midevil Darkness
<option value="Neon Ash"> Neon Ash
<option value="The Simpsons"> The Simpsons
</select>
</form>



<script language="JavaScript">
<!--

/*
Change Skin Script
Copyright &#169; 2003 xMALEVOLENCEx
Skins created by various members of the ifskinzone.net
ALL skins are copyright to http://www.ifskinzone.net
*/

var scheme = getCookie('template1');
if (scheme == 'Blue Ash') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/blueash.css">');
} else if (scheme == 'Blue Aura') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/blueaura.css">');
} else if (scheme == 'Blue Tech') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/bluetech.css">');
} else if (scheme == 'Cool Blue') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/coolblue.css">');
} else if (scheme == 'Dark Skyline') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/darkskyline.css">');
} else if (scheme == 'Final Fantasy') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/finalfantasy.css">');
} else if (scheme == 'Matrix Malfunction') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/matrixmalfunction.css">');
} else if (scheme == 'Midevil Darkness') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/midevildarkness.css">');
} else if (scheme == 'Neon Ash') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/neonash.css">');
} else if (scheme == 'The Simpsons') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/thesimpsons.css">');
} else if (scheme == 'IF Default') {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.ifskinzone.net/skinselector/defaultif.css">');
}


function changeskin(change) {
var scheme = change;
var name = 'template1';
var pathname = location.pathname;
var myDomain = pathname.substring(0,pathname.lastIndexOf('/')) +'/';
var ExpDate = new Date ();
ExpDate.setTime(ExpDate.getTime() + (180 * 24 * 3600 * 1000));
setCookie(name,scheme,ExpDate,myDomain);
}
function getCookie(name){
var cname = name + "=";
var dc = document.cookie;
if (dc.length > 0) {
begin = dc.indexOf(cname);
if (begin != -1) {
begin += cname.length;
end = dc.indexOf(";", begin);
if (end == -1) end = dc.length;
return unescape(dc.substring(begin, end));
}
}
return null;
}

function setCookie(name, value, expires, path, domain, secure) {
document.cookie = name + "=" + escape(value) +
((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
((path == null) ? "" : "; path=" + path) +
((domain == null) ? "" : "; domain=" + domain) +
((secure == null) ? "" : "; secure");
}
-->
</script>

</center>
<br />

I recommend putting this script in your Admin CP > Board Wrappers > Header & Body. Just above the <&#37; BOARD %> tag.

Copyright must stay intact http://209.85.62.23/73/161/emo/sq_yellow_smile.gif.

And yes I was the first ever person to develop the skin selector for InvisionFree.

that's the code. you'll have to change it to your skins, though.

benjirofl
13-03-2007, 08:36 PM
if i give you my invision site and you become admin could you do it?

Yggdrasill
13-03-2007, 08:37 PM
I'll do it tommorow though. And you'll nee to PM me the CSS for the skins you want.

Want to hide these adverts? Register an account for free!