Themes Skins Search Members Calendar Affiliates


Add Reply
Firestorm; White/Grey Red Orange
Topic Started: Thursday, 17. December 2009, 23:00 (238 Views)
Sith
Member Avatar
...

Name: Firestorm
Author: Sith
Date Created: Long ago
Preview: Click here!
Notes: Made for Prototype back in the day XD Previously unreleased.
Graphic set links: Download here!

Javascript:
Code:
 
<script type="text/javascript">
/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=idx">Index</a>'
menu1[1]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Members">Member List</a>'
menu1[2]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=boardrules">Terms of Service</a>'
menu1[3]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=calendar">Calendar</a>'
menu1[4]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Help">Help Files</a>'
menu1[5]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Search&F">Search</a>'
menu1[6]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Stats">Statistics</a>'
menu1[7]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=site">Portal</a>'


//The links on Menu 2
var menu2=new Array()
menu2[0]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Shoutbox">Shout Box</a>'
menu2[1]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=store">Store</a>'
menu2[2]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=lottery">Lottery</a>'
menu2[3]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Arcade">Arcade</a>'
menu2[4]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=Gallery">Gallery</a>'
menu2[5]='<a href="http://z11.invisionfree.com/FG_Skin/index.php?act=daffiliates">Affiliates System</a>'

var menuwidth='80px'
var menubgcolor='f4f4f4'
var disappeardelay=250
var hidemenu_onclick="yes"

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

</script>

Header and Body:
Code:
 
<table width="90%" align="center" cellpadding="0" cellspacing="0" class="maintable"><tr><td class="lb" valign="bottom" align="right"><img src="http://209.85.48.12/11726/151/upload/p3653665.jpg" width="57" height="152"></td><td class="ib" valign="top">
<div class="menu" align="right">

<a href="index.php" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '108px')" onMouseout="delayhidemenu()" style="padding-right: 16px; padding-left: 16px;">Features</a>

<a href="index.php" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '108px')" onMouseout="delayhidemenu()" style="margin-right:-6px;" >Forum Menu</a></div>
<div class="banner"><img src="http://209.85.48.12/11726/151/upload/p1728123.jpg"></div>
<% NAVIGATION %>
<table width="96%" align="center" cellpadding="0" cellspacing="0"><tr><td class="it" valign="top">
<% BOARD HEADER %>
<% BOARD %>
</td></tr></table>

Footer:
Code:
 
</td><td class="rb" valign="bottom" align="left"><a href='javascript:scroll(0,0);'><img src="http://209.85.48.12/11726/151/upload/p1720062.jpg" width="57" height="152"></a></td></tr></table>
<script language="javascript" type="text/javascript">
<!--
// 3-part maintitle
// Find more great skinners' scripts at http://aasforums.com

d = document.getElementsByTagName("DIV")
for (n = 1; n<d.length; n++) {
if (d[n].className == "maintitle") {
content = d[n].innerHTML
d[n].innerHTML = '<div class="mtrepeat"><div class="mtleft"><div class="mtright"><div class="mttext">' + content + '</div></div></div></div>'
d[n].style.padding = "0px" } }
//-->
</script>

CSS:
Code:
 
html

form { display:inline; }
img { vertical-align:middle; border:0px }
BODY { font-family: Tahoma, sans-serif; font-size: 10px; color: #888888;font-weight:normal;margin: 0px 10px 0px 10px;background: #999999 url(http://209.85.48.12/11726/151/upload/p1732052.jpg) top repeat-x; }
TABLE, TR, TD { font-family: Tahoma, Tahoma, Tahoma, sans-serif; font-size: 10px; color: #888888; }
a:link, a:visited, a:active {
color: #c15151;
text-decoration: none;
font-weight: normal;
}
a:hover {
color: #e66b2e;
text-decoration: none;
font-weight: normal;
}

fieldset.search { padding:6px; line-height:150% }
fieldset.search legend { color:#888888 }
.search { background-color: #ffffff; border:1px solid #cccccc; }
label { cursor:pointer; }

img.attach { border:3px double #cccccc;padding:2px; }

.maintable { height:100%; }
.banner { background: url(http://209.85.48.12/11726/151/upload/p1728133.jpg) repeat-x; }
.ib { background:#ffffff;padding:0px; }
.it { padding: 15px;min-width: 700px; }
.lb { background: url(http://209.85.48.12/11726/151/upload/p1732180.gif) right repeat-y; }
.rb { background: url(http://209.85.48.12/11726/151/upload/p1732185.gif) left repeat-y; }

/* Portal Fixes */
#ipbwrapper { text-align:left; width:750px; margin-left:auto;margin-right:auto;margin-top:10px;border:1px solid #777777;background-color:#ffffff;padding:10px;height:100%; }
#ipbwrapper td.row4 { background-image: url();background-color:#e1e1e1; }
#ipbwrapper .maintitle img { display:none; }
#ipbwrapper .maintitle { border: 0px solid #cccccc;border-bottom:1px solid #cccccc;background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top center repeat-x;
padding: 4px 0px 6px 0px;
color:#888888; }
#ipbwrapper div.maintitle a { color: #888888!important; }
#ipbwrapper td.maintitle a { color: #888888!important; }
#ipbwrapper .tableborder{ border:1px solid #cccccc; }
#ipbwrapper div.tablepad { border:0px solid #cccccc; }
#ipbwrapper div.row2 { border:0px solid #cccccc;background-image: url(); }
#ipbwrapper div.desc { background-image: url(); }
#ipbwrapper td.row2 { background-image: url(); }
#ipbwrapper td.post1 { background-image: url(); }



li.helprow { padding:0px; margin:0px 0px 10px 0px;text-align:left; }
ul#help { padding:0px 0px 0px 15px }

option.cat { font-weight:normal; }
option.sub { font-weight:normal;color:#888888}

/* Calendar Stuff */
.caldate {
font-weight:normal;
font-size:9px;
color:#888888;
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
padding:1px;
border:1px solid #cccccc;
margin:3px 30px 3px 30px;
text-align:center;
background-position-y:1;
}
td.row1 .caldate {
font-weight:normal;
background: #ee986d url(http://209.85.48.12/11726/151/upload/p1727910.jpg) center repeat-x;
color:#792f0a;
border:1px solid #be5928;
}
form div.tableborder td.row1 {
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
border: 0px solid #e1e1e1!important;
}

.warngood { color:green }
.warnbad { color:red }

#padandcenter { margin-left:auto;margin-right:auto;text-align:center;padding:14px 0px 14px 0px }

#profilename { font-size:20px; font-weight:normal; }
#calendarname { font-size:20px; font-weight:normal; }

#photowrap { padding:6px; }
#phototitle { font-size:20px; border-bottom:1px solid black }
#photoimg { text-align:center; margin-top:15px }

/* User Controls */
#ucpmenu { line-height:150%;width:22%; border:1px solid #cccccc;background-color: #e1e1e1; background-image: url(http://) }
#ucpmenu p { padding:2px 5px 6px 9px;margin:0px; }
#ucpcontent { background-color: #e1e1e1; background-image: url(http://); border:1px solid #cccccc;line-height:150%; width:auto }
#ucpcontent p { padding:10px;margin:0px; }
td#ucpcontent form div.tableborder td.row1 { background-color: #e1e1e1; border: none!important; }
#ucpcontent .pformstrip, #ucpmenu .pformstrip { border-top:1px solid #cccccc;border-bottom:1px solid #cccccc; }
#ucpmenu .maintitle, #ucpcontent .maintitle { border:0px solid #cccccc;margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;background-color:#d0d0d0; }

/* Firestorm Gaming designed by Sith_Lord of Prime TEMPLATES */
/* http://www.allinfo.com/primetemplates */
#ipsbanner { }
#logostrip { display:none; }
.logostrip a:link, .logostrip a:visited, .logostrip a:active { }
.logostrip a:hover { }
#submenu { display:none; }
#usermenu { display:none; }

#userlinks {
background: #e4e4e4 url(http://209.85.48.12/11726/151/upload/p1735467.jpg) center no-repeat;
border:1px solid #cccccc;
color: #888888;
}
#userlinks td {
padding: 0px 20px 0px 20px; }
}
#userlinks a:link, #userlinks a:active, #userlinks a:visited {
color: #888888!important;
}
#userlinks td a:link, #userlinks td a:active, #userlinks td a:visited {
color: #888888!important;
}
#userlinks a:hover {
color: #777777!important;
}
#userlinks td a:hover {
color: #777777!important;
}
#navstrip {
padding: 5px;
margin: 0px;
background: #ffffff url(http://209.85.48.12/11726/151/upload/p1719876.jpg) top repeat-x;
}

.activeuserstrip {
background-color:#e1e1e1;
background-image: url(http://209.85.48.12/11726/151/upload/p1719632.jpg);
background-repeat: repeat-x;
padding:2px;
border-left:1px solid #cccccc;
border-right:1px solid #cccccc;
border-top:1px solid #cccccc; }

.pformstrip {
background-color: #e1e1e1;
background-image: url(http://209.85.48.12/11726/151/upload/p1719632.jpg);
background-repeat: repeat-x;
padding: 2px 3px 2px 3px;
margin-top:1px;
border:none;
}
.pformleft { background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
padding:2px; margin-top:1px;width:25%; }
.pformleftw { background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
padding:2px; margin-top:1px;width:40%; }
.pformright { background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
padding:2px; margin-top:1px;border-left:1px solid #cccccc; }

/* Calendar Pformstrip */
/* Login */
html>body form div.tableborder div.pformstrip { border-right:1px solid #cccccc; border-left:1px solid #cccccc; border-bottom:1px solid #cccccc; border-top:1px solid #cccccc; }
form div.tableborder div.pformstrip { border-right:1px solid #cccccc; border-left:1px solid #cccccc; border-bottom:1px solid #cccccc; border-top:0px solid #cccccc; }
table.tablebasic td.pformleft { border:none }
table.tablebasic td.pformleftw { border:none }
table.tablebasic td.pformright { border:none }
/* Register */
form table.tablebasic td.pformleft { border:none!important }
form table.tablebasic td.pformright { border:none!important }

/* Post Pform */
table.tableborder td.pformstrip { border-left:1px solid #cccccc;border-right:1px solid #cccccc;border-bottom:1px solid #cccccc; }
table.tableborder td.pformleft { border-left:1px solid #cccccc;border-bottom:1px solid #cccccc; }
table.tableborder td.pformright { border-right:1px solid #cccccc;border-bottom:1px solid #cccccc; }

div.tableborder div.pformstrip { border-left:1px solid #cccccc;border-right:1px solid #cccccc;border-bottom:1px solid #cccccc; }

html>body div.tableborder div.pformstrip { border-top:1px solid #cccccc; }

.post1, .post2 { background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x; }
.postlinksbar { background-color:#e1e1e1;border-left:1px solid #cccccc;border-right:1px solid #cccccc;padding: 2px 3px 2px 3px;margin-top:1px;font-size:10px; background-image: url(http://209.85.48.12/11726/151/upload/p1719632.jpg);background-repeat:repeat-x; }

.row1, .row3 {
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
}
.row2 {
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
}

/* Index Google Ads */
.row4 {
background: #ffffff;
}

td.row4 {
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
}

div.row4 {
border:none!important;
border:none!important;
background: #ffffff;
padding:4px;
}

div.tableborder td.row4 div.row4 { border:0!important;background:transparent url(); }
div.tableborder div.row4 { background:#ffffff url(http://);border:1px solid #cccccc!important; }
div div div.row4 { background:#ffffff url(http://)!important;border:none!important; }

div.tableborder div.row2 { border-left:1px solid #cccccc;border-right:1px solid #cccccc;border-top:1px solid #cccccc;border-bottom:0px solid #cccccc; }
form div.tableborder div.row2 { border-left:1px solid #cccccc;border-right:1px solid #cccccc;border-top:0px solid #cccccc;border-bottom:1px solid #cccccc; }

/* Showuser rows fix */
.plainborder td.row1 { background-color: #e1e1e1; background-image: url(http://); }
.plainborder td.row3 { background-color: #e1e1e1; background-image: url(http://); }
.plainborder .maintitle { border:0px solid #cccccc;border-bottom:1px solid #cccccc; }

/* Open Tag Fix */
input.row1 { color:#888888;background-image: url(http://);background-color:#e1e1e1; }

.darkrow1 { background: #d0d0d0 url(http://209.85.48.12/11726/151/upload/p1740806.jpg) repeat-x; }
div.darkrow1 { padding:0px;
border:1px solid #be5928;background:#ed8e60 url(http://209.85.48.12/11726/151/upload/p1740557.jpg) center repeat-x;margin:-1px 0px; }
.darkrow2 {
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719641.jpg) repeat-x;
padding:0px;
}
div.darkrow2 {
background: #d0d0d0 url(http://209.85.48.12/11726/151/upload/p1740806.jpg) repeat-x;
border-bottom:1px solid #cccccc;
border-left:1px solid #cccccc;
border-right:1px solid #cccccc;
}
.darkrow3 {
background: #d0d0d0 url(http://209.85.48.12/11726/151/upload/p1740806.jpg) repeat-x;
}
td.darkrow3 div.darkrow3 {
border: 1px solid #cccccc;
background: #e1e1e1;
padding: 1px 0px 1px 0px; }
div.darkrow3 a { margin:0px 3px 0px 3px; }
div.darkrow3 a:hover { text-decoration:none; }

.hlight { background-color: #e1e1e1; background-image: url(http://) }
.dlight { background-color: #e1e1e1; background-image: url(http://) }

.titlemedium {
font-weight:normal;
padding: 2px 3px 2px 3px;
background-image: url(http://209.85.48.12/11726/151/upload/p1719632.jpg);
background-repeat: repeat-x;
margin:0px;
background-color: #e1e1e1;
border:0px solid #cccccc;
}
.titlemedium a:link, .titlemedium a:visited, .titlemedium a:active { text-decoration: underline;
}

div.titlemedium {
border-left:1px solid #cccccc;
border-right:1px solid #cccccc;
border-bottom:1px solid #cccccc;
}

div.maintitle b { font-weight:normal;font-size:10px; }
div.maintitle div { text-align:left; }
.maintitle a:link, .maintitle a:visited, .maintitle a:active { text-decoration: none; color: #ffffff; }
.maintitle a:hover { color: #ffffff; text-decoration: none; }
.maintitle img { display:none; }
.maintitle { font-weight:normal;color:#ffffff;text-align:center;font-size:11px; }
.mtrepeat { background: url(http://209.85.48.12/11726/151/upload/p1719714.jpg) top repeat-x; }
.mtleft { background: url(http://209.85.48.12/11726/151/upload/p1719709.jpg) top left no-repeat; }
.mtright { background: url(http://209.85.48.12/11726/151/upload/p1719722.jpg) top right no-repeat; }
.mttext { text-align: center; padding: 5px 0px 7px 120px;font-weight:normal;font-size:11px; }

#ucpmenu .mtrepeat { background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top repeat-x; }
#ucpmenu .mtleft { background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top left no-repeat; }
#ucpmenu .mtright { background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top right no-repeat; }
#ucpmenu .mttext { text-align: center;color:#888888; }

#ucpcontent .mtrepeat { background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top repeat-x; }
#ucpcontent .mtleft { background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top left no-repeat; }
#ucpcontent .mtright { background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top right no-repeat; }
#ucpcontent .mttext { text-align: center;color:#888888; }

#ucpcontent div.wrapmini { border-bottom:1px solid #c9d1e0; }

.plainborder td.maintitle { border:0px solid #c9d1e0;background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top repeat-x;border-bottom:1px solid #cccccc;color:#888888;padding:4px 0px; }

table.tableborder .maintitle {
background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg) top repeat-x;
border:1px solid #cccccc;
color: #888888;
padding: 5px 0px 5px 0px;
}
table.tablebasic .maintitle {
background: url(http://209.85.48.12/11726/151/upload/p1740918.jpg);
background-repeat:repeat-x;
padding: 5px 0px 7px 0px;
}

#ucpcontent div.wrapmini { border-bottom:1px solid #cccccc; }

.plainborder { border:1px solid #cccccc;background-color:#e1e1e1;}
.tableborder { border:0px solid #cccccc;background-color:#cccccc; padding:0px; margin:0px; width:100% }
.tablefill { border:1px solid #cccccc;background-color:#e1e1e1; background-image: url(http://);padding:6px; }
div.tablefill { border:1px solid #cccccc; }
td.pformleft table.tablefill { border:0px solid #cccccc;background-color:transparent; background-image: url(http://);padding:6px; }
table.tablefill { border:1px solid #777777; }
/* Smilie Top */
table.tablefill td b {
border:1px solid #cccccc;
padding: 1px 3px 1px 3px;
background-image: url(http://209.85.48.12/11726/151/upload/p1719632.jpg);
background-repeat: repeat-x;
}

.tablepad { background-color:#e1e1e1; background-image: url(http://);padding:2px;border:1px solid #cccccc; }
.tablebasic { width:100%; padding:0px 0px 0px 0px; margin:0px; border:0px }
div.desc { background-color:#e1e1e1 }
/* Google Search */
div.tableborder div.tablepad { background-color: e1e1e1!important; }
div.tableborder div.tablepad table { background-color: e1e1e1!important; }
div.tableborder div.tablepad input { background-color: e1e1e1!important;border:1px solid #cccccc;color:#888888;font-size:10px; }
div.tableborder div.tablepad font { font-size:11px; color:#888888; }

.wrapmini { float:left;line-height:1.5em;width:205px;border:1px solid #cccccc;padding:2px;background-color:#e1e1e1;margin:0px 3px 0px 0px;background-image: url(http://209.85.48.12/11726/151/upload/p1719577.jpg);
background-repeat: repeat-x; }
#ucpcontent .wrapmini { border:0px solid #cccccc;border-right:1px solid #cccccc; }
.wrapmini img { margin:2px 0px 2px 0px; }
.pagelinks { float:left;line-height:1.2em;width:35% }

.desc { font-size:9px; color:#888888 }
span.desc b { font-weight:normal; }
.edit { font-size: 9px }

.signature { font-size: 10px; color: #888888 }
.postdetails { font-size: 10px }
.postcolor { font-size: 11px; line-height: 160% }

.normalname { font-size: 11px; color: #888888 }
.normalname a:link, .normalname a:visited, .normalname a:active { font-size: 11px }
.unreg { font-size: 10px; color: #888888 }

.searchlite { font-weight:normal; color:#888888; background-color:#e1e1e1 }

#QUOTE {
font-family: Tahoma, Tahoma; font-size: 10px; color: #888888; padding:3px;
border:1px solid #cccccc;
background: #f0f0f0 url(http://209.85.48.12/11726/151/upload/p1734612.jpg) repeat-x;
background-position-y:1;
}
#CODE {
font-family: Tahoma, Tahoma; font-size: 10px; color: #888888; padding:3px;
border:1px solid #cccccc;
background: #f0f0f0 url(http://209.85.48.12/11726/151/upload/p1734612.jpg) repeat-x;
background-position-y:1;
}

div.tableborder div.row1 { border-left:1px solid #cccccc;
border-right:1px solid #cccccc;
border-bottom:1px solid #cccccc; }

.copyright { font-family: Tahoma, Tahoma, Sans-Serif; font-size: 9px; line-height: 12px }

.codebuttons { font-size: 10px; font-family: Tahoma, helvetica, sans-serif;color: #888888;vertical-align: middle;background-image: url(http://209.85.48.12/11726/151/upload/p1719632.jpg);
background-repeat: repeat-x;
margin:0px;
background-color: #e1e1e1;margin:1px 2px 1px 1px;border:1px solid #cccccc; }
.codebuttons:hover { background: #ee986d url(http://209.85.48.12/11726/151/upload/p1727910.jpg) center repeat-x;
color:#792f0a;
border:1px solid #be5928; }
.forminput, .textinput, td.pformright textarea { font-size: 10px; font-family: Tahoma, helvetica, sans-serif;color:#888888!important; vertical-align: middle;border:1px solid #cccccc!important;
background: #f0f0f0 url(http://209.85.48.12/11726/151/upload/p1734612.jpg) repeat-x;
background-position-y:1;
padding:2px;
}
.radiobutton, .checkbox { background-color: transparent; }
input.forminput { background-color: #f0f0f0; }
select.codebuttons { margin:0px 0px 0px 2px;background-color:#e1e1e1; }
select.codebuttons:hover { background-color:#e1e1e1;background-image: url();color:#888888;border:1px solid #cccccc; }
form input.forminput { margin: 0px 0px 0px 2px; }

/* Poll */
form div.tablepad table { border:1px solid #cccccc;padding:0px 2px 0px 2px;margin:2px 0px 2px 0px; }
form div.tablepad td.row1 { background:none; }
div.tableborder form div.pformstrip { border-top:none!important;border-bottom:none!important; }
div.tableborder form div.tablepad {
border-bottom:none!important;
}

/* Editing Poll Input */
/* td.row1 here can't be fixed without messing up current calendar border */
td.row1 input {
border:1px solid #cccccc!important;
background: #e1e1e1 url(http://209.85.48.12/11726/151/upload/p1719577.jpg) repeat-x;
padding:2px;
font-size: 10px; font-family: Tahoma, helvetica, sans-serif;color: #888888;
}

/* Error */
div.tablefill form div.tableborder {
background: #e1e1e1;
}
div.tablefill form div.tableborder div.titlemedium {
border-top: 1px solid #cccccc;
}

.thin {
padding:3px;
border:1px solid #cccccc;
background: #f0f0f0 url(http://209.85.48.12/11726/151/upload/p1734612.jpg) repeat-x;
background-position-y:1;
margin: 3px 1px 3px 1px;
}

.purple { color:purple;font-weight:normal }
.red { color:red;font-weight:normal }
.green { color:green;font-weight:normal }
.blue { color:blue;font-weight:normal }
.orange { color:#F90;font-weight:normal }

/* Menu */
.menu {
color:#792f0a;
padding:6px 5px 7px 5px;
background: #ee986d url(http://209.85.48.12/11726/151/upload/p1727910.jpg) repeat-x;
}
.menu td {
color: #792f0a;
}
.menu a {
padding:6px 16px 6px 16px;
color: #792f0a;
margin: 0px 0px 0px -4px;
border-left: 1px solid #be5928;
border-right: 1px solid #be5928;
}
.menu a:hover {
background: url(http://209.85.48.12/11726/151/upload/p1727971.jpg) top center repeat-x;
margin: 0px 0px 0px -4px;
color: #792f0a;
border-left: 1px solid #be5928;
border-right: 1px solid #be5928;
}

#dropmenudiv{
position:absolute;
border:1px solid #be5928;
border-top: 1px solid #be5928;
border-bottom-width: 0;
font-size: 10px;
line-height:14px;
z-index:100;
}

#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #be5928;
padding: 3px 0px;
text-decoration: none;
font-size: 10px;
font-weight: normal;
background: #ee986d url(http://209.85.48.12/11726/151/upload/p1728074.jpg) right repeat-y;
color: #792f0a;
}

#dropmenudiv a:hover{
color: #792f0a;
background: #edad6d url(http://209.85.48.12/11726/151/upload/p1728055.jpg) right repeat-y;
}

Posted Image

Follow Outline on Twitter! - Stay in tune with the latest news, updates and gossip
Online Profile Quote Post Goto Top
 
Chance
Member Avatar
Madyy hates Chance

Really nice job Sith! MOAR! :p

I <3 Taler....and Korsgaard for the amazing signature!
Posted Image
Brandon2KO, Kiddie


Offline Profile Quote Post Goto Top
 
Joe
Member Avatar
Outline's resident pirate. :r

Looks good- nice drop downs. :P
RYJOE'S TEST BOARD!

ZB Themes on the site!

Latest code: Users Online Today
Be nice and I'll install it for you- PM me. ;D
Offline Profile Quote Post Goto Top
 
Seth
Member Avatar
..........................
[ *  *  *  *  * ]
Wow!

Long time ago is definitely right. Where did you find this Sith!?
Posted Image
Posted Image
Online Profile Quote Post Goto Top
 
Sith
Member Avatar
...

Splash
Friday, 18. December 2009, 00:30
Wow!

Long time ago is definitely right. Where did you find this Sith!?
Prototype found it. :P
Posted Image

Follow Outline on Twitter! - Stay in tune with the latest news, updates and gossip
Online Profile Quote Post Goto Top
 
Ellusive
Member Avatar
imabeast.
[ *  *  *  *  * ]
Zomg, i remember Firestorm Gaming. xDD

I always thought this was a nice skin. Good work. :P
Posted Image
Offline Profile Quote Post Goto Top
 
Prototype
Member Avatar
\m/,_d(>.<)b_,\m/
[ *  *  *  *  *  * ]
Ellusive
Friday, 18. December 2009, 00:41
Zomg, i remember Firestorm Gaming. xDD

I always thought this was a nice skin. Good work. :P
XD
The good old days... :erm:

You did a great job with the skin, Sith. ;)
new gaming forum; coming soon
Online Profile Quote Post Goto Top
 
Nero.
Member Avatar
Level 3
[ *  *  * ]
Looks good , I'd use it if I was on IF . Nice dropdowns as well.
Offline Profile Quote Post Goto Top
 
Madyy
Member Avatar


This skin has been accepted to the light skins section.
Madyy has super ninja skills :proto:
--------------------------------------------------
step by step, heart to heart
left-right-left
we all fall down...like toy soldiers
bit by bit, torn apart
we never win
but the battle wages on...for toy soldiers...

Spoiler: click to toggle
Online Profile Quote Post Goto Top
 
osiris
No Avatar
Level 1
[ * ]
Thanks It's cool :P
Offline Profile Quote Post Goto Top
 
downsideup
Member Avatar
Level 6
[ *  *  *  *  *  * ]
I really like this :O
Posted Image
Posted Image | Posted Image | Posted Image
---
Top 5:

#5 | LMS | 8/17/10
Offline Profile Quote Post Goto Top
 
Gauge
Member Avatar
I am that GUY!
[ *  *  *  * ]
Prototype
Friday, 18. December 2009, 00:44
Ellusive
Friday, 18. December 2009, 00:41
Zomg, i remember Firestorm Gaming. xDD

I always thought this was a nice skin. Good work. :P
XD
The good old days... :erm:

You did a great job with the skin, Sith. ;)
OHH EMM GEE!! :D I loved this skin, back in the old days! It was very sexy! :D Sith have you released the gaming impulse one you made Proto?
Posted Image
Add to your Signatures!! NOW OPEN!
Around the Network Ads
 

Victory Road - Stereo Wired - Nintendo All-Star Forums - Cosmogramma - Public Notice - Public Notice
Banner Train

Posted Image - Posted Image

Goals: [400]- [450] - [500] - [550][ - [600] - [650] - [700]
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Light · Next Topic »
Add Reply



View Themeflow Dark
High quality dark themes for ZetaBoards
View Themeflow Light
High quality light themes for ZetaBoards
View the theme index; browse by colour.