Title: New Skin????
Description: what do you think..
athena - March 8, 2005 06:03 AM (GMT)
We've had this color for a while now even the backround...how about pink? we haven't had this color yet...it is not too light or not too dark
Lady_Montone - March 8, 2005 10:37 AM (GMT)
i think pink wud ROCK! ;) :P
sydney78 - March 8, 2005 10:57 AM (GMT)
I dont know about pink,it might be too cotton candy sweet.Or it could be okay,who knows.How about light yellow or brick red?
fearless_fan - March 8, 2005 08:36 PM (GMT)
how about light red? (but not pink) do you know what color i'm talking about?
fearless_shaz - March 8, 2005 08:40 PM (GMT)
ok well the staff will get working on it...
Lady_Montone - March 8, 2005 08:41 PM (GMT)
EddieBear2004 - March 8, 2005 09:12 PM (GMT)
like light red the best so far.
Mary Moss - March 8, 2005 10:52 PM (GMT)
I hope it's not pink.... :lol:
FGaia13 - March 9, 2005 01:08 AM (GMT)
Well, there are alot of pink skins out there, it be good to try some.
Mary Moss - March 9, 2005 01:23 AM (GMT)
As long as it's a good pink.... :unsure:
athena - March 9, 2005 06:33 AM (GMT)
I love pink ^_^ but not too light pink
EdnGaia4eva - March 9, 2005 03:50 PM (GMT)
I would say any light color, but umm not pink :P...its way too common...but then again I'm not sure what shade of pink u mean . I actually like the one we have rite now, but I guess its been like this for long now.
fearless_fan - March 9, 2005 04:28 PM (GMT)
EddieBear2004 - March 9, 2005 07:02 PM (GMT)
nah, I don't think pink really fits the fearless theme. red might be ok.
hope413 - March 9, 2005 11:09 PM (GMT)
I like red better than pink...
athena - March 10, 2005 01:23 AM (GMT)
red is too dark...how about violet
Domino - March 10, 2005 04:05 AM (GMT)
How 'bout this, I'll let members choose skins and they can be switched every week or so. Skins can be found at the IF Skin Zone. There's a link at the very top. You can find some skins, and if you like them PM me a link and I"ll see what I can do.
Lady_Montone - March 10, 2005 07:10 PM (GMT)
that sounds cool, do u want us post what we have found on here too....?
i found some awesome purple and purple/pink ones ;) Not so much red though..like one that might work ;)
Mary Moss - March 10, 2005 09:51 PM (GMT)
why won't red work? :huh:
Domino - March 10, 2005 11:13 PM (GMT)
Just PM them to me, it keeps things simple.
FGaia13 - March 11, 2005 12:49 AM (GMT)
Hmmm, I agree, at the IfSkinzone all you find is red and black, or techno red with white, never just a simple red. Lol even I admit to makign a red and black skin.
athena - March 11, 2005 02:42 AM (GMT)
red and black skin that's so cool..like a checker board...I like that
Lady_Montone - March 11, 2005 07:03 AM (GMT)
theres one with drippin blood though...thats black and red...
fearless_fan - March 11, 2005 03:09 PM (GMT)
red and black is sorta intense...
FGaia13 - March 11, 2005 07:52 PM (GMT)
hmmm, instead of looking for a skin, I advise you guys to look around, not for what you want, but something you might want, because if you look for somethign in specific, you might be dissapointed not to find it, the IFSkinZone is a great skin place, but it's been said 2 out of three customers have been satisfied.
Lady_Montone - March 11, 2005 09:38 PM (GMT)
i found some cool violet ones though i like them :P
Sammmm - March 13, 2005 04:59 PM (GMT)
pink sounds nice :bounce:
Domino - March 17, 2005 01:26 AM (GMT)
No one has pmed me with any skin choices yet....
oldclothesKing - March 17, 2005 02:17 AM (GMT)
| QUOTE (Domino @ Mar 9 2005, 11:05 PM) |
| How 'bout this, I'll let members choose skins and they can be switched every week or so. Skins can be found at the IF Skin Zone. There's a link at the very top. You can find some skins, and if you like them PM me a link and I"ll see what I can do. |
Good News Domino! :D There's an ability to choose between multiple skins, without having one single official skin! :D Here, check out
My ZC Forum?. You can see the skin selector there in the middle of the top part of the page. Try it out for yourself. ;) Here's the code for it.
| CODE |
<center> <ul><font color="#000088"><li><font color="#111188">Sk<font color="#221188">in</font><font color="#331188"> se</font><font color="#331188">le</font><font color="#441188">ct</font><font color="#551188">or</font><br></ul> <form></font></font> <select onChange="changeskin(this.options[this.selectedIndex].value); window.location.reload();"> <option>Select a Skin_ <option value="NAMEOFSKIN"> Name Of Skin <option value="NAMEOFSKIN2"> Name Of Second Skin </select> </form>
<script language="JavaScript"> <!--
/* Change Skin Script Copyright © 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 == 'NAMEOFSKIN') { document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.YOURCSSFILELOCATIONHERE.CSS">'); } else if (scheme == 'NAMEOFSKIN2') { document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="http://www.YOURCSSFILELOCATIONHERE.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> |
The thing is, you need to store the skins (Via .CSS files) seperately. I recommend www.thefilebin.com for this, or photobucket or imageshack. They're quite reliable, I suppose. (Or you could store them on the forums themselves as attachments, but .. IMHO, that's sorta like circular logic. @_@ I have no idea how that would work out. I'd say, definitely go with TheFileBin.com if you decide to utilize this method. :)
Domino - March 17, 2005 11:11 PM (GMT)
Yeah, I've already looked into skin selectors. I don't usually have time to look for skins, let alone put one together....
oldclothesKing - March 18, 2005 04:01 PM (GMT)
Well, I often have nothing to do at school anyway, for long stretches of time at once, so I'm sure if you could give me a link to the skins you'd like to see, I could store the skins in .CSS files on my own webspace, put together a skin file for you guys, give you the code, and let you just put in the code into the board wrappers. <(0_0)> I do it all the time. Of course, it's up to you, Domino. The code I just gave is pretty much optimized for the center of the page between the header area and the forums list.
athena - March 22, 2005 01:30 AM (GMT)
I love the new color Domino! it rox!!!!!! :jumpy:
Mary Moss - March 22, 2005 01:36 AM (GMT)
Domino - March 22, 2005 01:50 AM (GMT)
Yeah it took me a while to find this skin. I'm glad you like it.
FGaia13 - March 22, 2005 01:52 AM (GMT)
hey Domino, is the board wrappers still on? cause, they're hard on my eyes, like dark red and then bright big white, however, good skin slection. :)
Domino - March 22, 2005 01:53 AM (GMT)
I think they are, let me fix them.
Edit:
Fixed!
EddieBear2004 - March 22, 2005 02:02 AM (GMT)
FGaia13 - March 22, 2005 02:02 AM (GMT)
Lady_Montone - March 22, 2005 07:16 AM (GMT)
Haunted Heart - March 22, 2005 09:25 AM (GMT)
Cool skin! Its my favourite colour too :D