Alliance Page Updated
Posted: Tue Feb 19, 2008 1:32 am
I demand a forum for Website :O
Removed guilds that aren't in the alliance anymore. Added guild tags next to names. Updated GL's. Updated PWND's blurb; someone will need to resize their image for the site, since I have Paint to work with. Added blurbs for CooL and uS, which they recently submitted. CooL's image section might be a bit strange as well, but we'll see. Added a blurb/ripped part of the one under zos_code.php under Join Our Alliance (doesn't make sense there, in my opinion), because it looked lonely.
I use Notepad for coding, so if that messed stuff up, too bad :O. I doubt that it did, though... since Notepad doesn't add in random code on its own
Removed guilds that aren't in the alliance anymore. Added guild tags next to names. Updated GL's. Updated PWND's blurb; someone will need to resize their image for the site, since I have Paint to work with. Added blurbs for CooL and uS, which they recently submitted. CooL's image section might be a bit strange as well, but we'll see. Added a blurb/ripped part of the one under zos_code.php under Join Our Alliance (doesn't make sense there, in my opinion), because it looked lonely.
I use Notepad for coding, so if that messed stuff up, too bad :O. I doubt that it did, though... since Notepad doesn't add in random code on its own
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ZoS Alliance</title>
<meta http-equiv=Content-Type content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="./images/site/zos-icon.ico">
<link href="css/style-1.css" rel="stylesheet" type="text/css"> <script language="JavaScript" type="text/JavaScript">
/***************************************************************************
* Internet Explorer Margin Fix
* Copyright 2002-2004 by David Schontzler | www.stilleye.com
* Free to use under GNU General Public License as long as this message
* remains intact.
* Description: This script will fix the horizontal margin support in IE5/6
* URI: http://www.stilleye.com/projects/dhtml/marginfix/
* Additional Credits:
* - Bibek Sahu (BS) | http://www.dodds.net/~scorpio/
***************************************************************************
* Version: 2.2.0
***************************************************************************/
if(!Array.prototype.push) {
Array.prototype.push = function() {
var i, j;
for(i=0; j=arguments[i]; i++) this[this.length] = j;
return this.length;
}
};
IEmarginFix = {
list : new Array,
ss : null,
init : function() {
var ua = navigator.userAgent.toLowerCase();
if( (ua.indexOf("msie 5.") != -1 || ua.indexOf("msie 6.") != -1)
&& ua.indexOf('mac') == -1 && document.compatMode != "CSS1Compat"
&& window.attachEvent && document.styleSheets.length > 0 ) {
this.ss = document.styleSheets;
var auto, lop, list, s, i, a;
auto = new Array;
lop = new Array;
list = new Array;
s = this.getRules();
for(i=0; i<s.length; i++) {
if( this.checkMargin(s[i][1]) )
auto.push(s[i][0]);
else if( this.checkLopsided(s[i][1]) )
lop.push(s[i][0]);
}
for(i=0; a = auto[i]; i++)
this.ss[this.ss.length-1].addRule(a, "margin-left : expression( IEmarginFix.autoFix(this) );");
for(i=0; a = lop[i]; i++)
this.ss[this.ss.length-1].addRule(a, "margin-left : expression( IEmarginFix.lopsidedFix(this) );");
this.list = auto.length > 0 ? lop.length > 0 ? auto.concat(lop) : auto : lop;
window.attachEvent("onload", IEmarginFix.checkInline);
}
},
autoFix : function(elm) {
var rslt = "auto", w = elm.currentStyle.width;
var id = elm.id ? "#" + elm.id : elm.className ? elm.tagName + "." + elm.className : elm.tagName; // Credit: BS
if(w.indexOf("%") != -1) {
rslt = ( 100 - parseInt(w) )/2 + "%";
IEmarginFix.ss[IEmarginFix.ss.length-1].addRule(id, "margin-left : " + rslt + "; margin-right : " + rslt + "; width : 100%");
} else
IEmarginFix.ss[IEmarginFix.ss.length-1].addRule(id, "margin-left : expression( IEmarginFix.pxAutoFix(this) );");
return rslt;
},
// so we don't have to go through the if...else all over again!
pxAutoFix : function(elm) {
var rslt, par = elm.parentNode;
rslt = par.clientWidth > 0 ? par.clientWidth : par.scrollWidth;
rslt = (rslt - elm.offsetWidth) / 2;
return Math.max(rslt, 0);
},
lopsidedFix : function(elm) {
var par = elm.parentNode, parWidth, rslt;
parWidth = par.clientWidth > 0 ? par.clientWidth : par.scrollWidth;
rslt = parWidth - elm.offsetWidth;
if( elm.currentStyle.marginRight.indexOf("px") != -1 )
rslt -= parseInt( elm.currentStyle.marginRight );
else if( elm.currentStyle.marginRight.indexOf("%") != -1 )
rslt -= parseInt(elm.currentStyle.marginRight) * 0.01 * parWidth;
rslt -= ( parseInt(par.currentStyle.paddingLeft) + parseInt(par.currentStyle.paddingRight) );
return rslt;
},
checkInline : function() {
var i, a, elm, blk, list = new Array, auto = IEmarginFix.list;
for(i=0; a = auto[i]; i++) {
if( a.indexOf(".") != -1 ) // classes
list = list.concat( IEmarginFix.getClass( a.substring(a.indexOf(".")+1) ) );
else if( a.charAt(0) == '#' ) // ids
list.push( document.all[a.substring(1)] );
else { // tags
elm = document.getElementsByTagName(a);
if(elm.length > 0)
for(i=0; i < elm.length; i++)
list = list.concat( elm.item(i) );
}
}
for(i=0; i<list.length; i++) {
elm = list[i];
if(elm && elm.style) {
blk = IEmarginFix.getStyle(elm, "display");
if(blk != "block" && ( IEmarginFix.ie50 ? !IEmarginFix.ie50check(elm.tagName) : blk != "list-item" ) ) {
elm.style.margin = 0;
}
}
}
},
checkMargin : function(str) {
return ( str.search(/position\s*:\s*absolute/i) == -1 && (
str.match(/margin\s*:\s*auto(;|$)/i) || str.match(/margin\s*:\s*\S+\s+auto(;|$)/i)
|| ( str.match(/margin-left\s*:\s*auto/i) && str.match(/margin-right\s*:\s*auto/i) )
|| str.match(/margin\s*:\s*\S+\s+auto\s+\S+(;|$)/i) || str.match(/margin\s*:\s*\S+\s+auto\s+\S+\s+auto/i)
)
);
},
checkLopsided : function(str) {
return ( str.search(/position\s*:\s*absolute/i) == -1 && (
str.match(/margin-left\s*:\s*auto/i) && str.match(/margin-right\s*:\s*\d+(px|%)?/i)
|| str.match(/margin-left\s*:\s*auto/i) && !str.match(/margin-right/i)
)
);
},
// these next few methods are basically for IE 5.0's bad interpretation of the "display" property (always returning "inline" unless explicitly set, even for block elements!)
ie50 : navigator.appVersion.toLowerCase().indexOf("msie 5.0") != -1,
ie50check : function(tag) {
var i, r = false;
tag = tag.toUpperCase();
for(i=0; i<this.blockElms.length; i++)
if(tag == this.blockElms[i])
r = true;
return r;
},
blockElms : new Array("ADDRESS", "BLOCKQUOTE", "BODY", "CENTER", "COL", "COLGROUP", "DD", "DIR", "DIV", "DL", "DT", "FIELDSET", "FORM", "FRAME", "HN", "HR", "IFRAME", "LEGEND", "LI", "LISTING", "MARQUEE", "MENU", "OL", "P", "PLAINTEXT", "PRE", "TABLE", "TBODY", "TD", "TFOOT", "TH", "THEAD", "TR", "UL", "XMP"),
// end IE5.0 detect
getClass : function(cls) {
var el, r, i;
el = document.all ? document.all : document.getElementsByTagName('*');
r = new Array;
for(i=0; el[i]; i++) if(el[i].className == cls) r.push(el[i]);
if(r.length==0) r = null;
return r;
},
getRules : function(wh) {
var s = null;
if(document.styleSheets && document.styleSheets.length) {
var i, j, k, m, x, y, is = true, screen = true;
s = new Array;
for(i=0; i < document.styleSheets.length; i++) {
j = document.styleSheets.item(i);
if(wh) is = (j.title || j.id) == wh;
if( typeof j.media == "string" && j.media.length > 0 && !j.media.match(/^(screen)|(media)$/i) )
screen = false;
else
screen = true;
if(!j.disabled && screen && is) {
if(j.rules) {
if(j.imports && j.imports.length) {
for(k=0; k < j.imports.length; k++)
for(x=0; y = j.imports[k].rules[x]; x++)
s.push([y.selectorText, y.style.cssText]);
}
for(k=0; m = j.rules[k]; k++)
s.push([m.selectorText, m.style.cssText]);
} else {
return null;
}
}
if(wh && is) break;
else is = true;
}
}
return s;
},
getStyle : function(obj,sty) {
var sty2 = IEmarginFix.compactStyle(sty);
var r = obj.style[sty2];
if(r=='') {
if(document.defaultView) r = document.defaultView.getComputedStyle(obj,'').getPropertyValue(sty);
else r = obj.currentStyle[sty2];
}
if(!r) r = null;
return r;
},
compactStyle : function(str) {
var s = str.split('-'); var o = [s[0]];
for(i=1;(j=s[i]);i++) { o[o.length] = j.charAt(0).toUpperCase(); o[o.length] = j.substring(1) };
return o.join('');
}
};
IEmarginFix.init();
function format() {
var rTop = document.getElementById("text3");
var rBottom = document.getElementById("text4");
var lMain = document.getElementById("text2");
var foooter = document.getElementById("footer");
var fullText = document.getElementById("text1");
var fullHeight = 0;
if (lMain) {
var rTopHeight = rTop.offsetHeight;
var rBottomHeight = rBottom.scrollHeight;
var lMainHeight = lMain.offsetHeight;
var rMainHeight = rTopHeight + rBottomHeight + 5;
if (rMainHeight > lMainHeight) {
lMain.style.height = rMainHeight + "px";
} else if (lMainHeight < 500) {
lMainHeight = 500;
lMain.style.height = 500 + "px";
if(rBottomHeight < 270) {
rBottom.style.height = 270 + "px";
}
} else {
lMain.style.height = lMainHeight + 12 + "px";
rBottom.style.height = lMainHeight - rTopHeight + 7 + "px";
}
footer.style.top = lMainHeight + 100 + "px";
} else if (fullText) {
fullHeight = fullText.scrollHeight;
fullText.style.height = fullHeight + 12 + "px";
footer.style.top = fullHeight + 90 + "px";
}
}
</script></head>
<body onLoad="format()">
<div class="main">
<div class="navigation">
<embed src="./flash/zos-nav.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1002" height="19"></embed>
</div> <div id="text2" class="text2">
<div class="pdivl">
<div class="centertext">
<div class="h1"><img src="./images/site/left-heading-pic.jpg"/>
The ZoS Alliance <img src="./images/site/right-heading-pic.jpg"/></div>
</div>
<hr/>
<br/>
<div class="h2">Celestial Order of Light</div>
<div class="p">
Leader: Meiko Isamura<br/>
Website: N/A<br/>
Celestial Order of Light [CooL] started in October 2007, founded by officers and members of a previous PvX guild who wanted to make a PvE Hard Mode focused guild. CooL members are a mix of players from the USA, Canada, Europe, and Australia and are either players who have finished their normal mode titles and now want to learn and focus on hard mode or experienced hard mode players who want to be in a guild with members who have similar goals as themselves. Almost every member is either a working professional or college student who loves Guild Wars. Our most common activities are GWEN dungeons, Guardian titles, Vanquishes, and DoA runs. Most of our members are working on reaching the highest rank of the KoaBD title track before GW2 comes out.</div>
<div class="h2">Cryptic Revolution</div>
<div class="p"><div class="mainimg" style="float: right;"><img src="./images/alliance/pwnd.jpg"/></div>
Leader: E L E A Z A R O S<br/>
Website: <a href="http://www.crypticrevolution.net">PWND's Site</a><br/>
Cryptic Revolution [PWND] is a PvE based guild lead by a husband and wife. We have several leaders that influence the direction of the guild so that all members share a benefit. There are a handful of hardcore players that thrive in helping others for a more friendly and enjoyable gaming experience.</div>
<div class="h2">Flavor of the Month</div>
<div class="p"><div class="mainimg" style="float: right;"><img src="http://fotm.us/images/fotm.jpg"/></div>
Leader: Zomglolwtfbbq Pwnd<br/>
Website: <a href="http://fotm.us/">uS's Site</a><br/>
Flavor of the Month [uS] was recently founded in January 2008 by a few officers of various disbanding PvP guilds. Our guild contains mature players and is composed mainly of college students and professionals - most which have gladiator and/or hero ranks. We are a PvP focused guild; however, some members PvE when in the mood. Our goal is similar to most PvP guilds: develop a solid core group of players, dominate HoH, and climb the GvG ladder. </div>
<div class="h2">The Knights Templar</div>
<div class="p"><div class="mainimg" style="float: right;"><img src="http://www.knights-templar.com/images/logos/button_KT.jpg"/></div>
Leader: The Wanderer<br/>
Website: <a href="http://www.knights-templar.com">KT's Fansite</a><br/>
The Knights Templar [KT] was formed late in 2003 by a group of friends who had previously gamed together in Diablo II and has been a productive and valuable guild in the Alpha Test since. To this day KT remains a guild dedicated to close friendships, and it even includes a few family groups. The Knights Templar has a strong community focus, both within the guild and for those who they meet online. This is reflected in everything KT members do, from their operation of a fansite to including non-members in groups for missions or PvP play.</div>
<div class="h2">Luxon All Stars</div>
<div class="p"><div class="mainimg" style="float: right;"><img src="./images/alliance/LAS.jpg"/></div>
Leader: Goddess of Lux<br/>
Website: <a href="http://s10.invisionfree.com/Luxon_All_Stars/index.php">LUX Forums</a><br/>
Luxon All Stars [LUX] was founded as an AB guild, so we excel at AB, but also do pve. Currently we are moving more into TA, HA, and GvG. </div>
<div class="h2">Shadow Knights of Balthazar</div>
<div class="p"><div class="mainimg" style="float: right;"><img src="./images/alliance/SKOB.jpg"/></div>
Leader: Bria Amnell<br/>
Website: <a href="http://www.skob.org">SKOB's Website</a><br/>
Shadow Knights of Balthazar [SKOB] is old - very old. It was formed from merging FF and iPOA guilds that were created at the beginning of GW. We maintain a strong atmosphere of friendship and good behavior. We will sacrifice size for quality. We appreciate good play but understand mistakes and don't get upset easily. To us, the feelings of the person behind the keyboard is more important than a couple of pixels on a screen.</div></div>
</div>
<div id="text3" class="text3">
<div class="pdivr"><div class="p">The ZoS Alliance has pledged its allegiance to the Luxon
Faction of Cantha.</div></div>
</div>
<div id="text4" class="text4">
<div class="centertext">
<div class="h1"><img src="./images/site/left-heading-pic.jpg"/> Alliance Rules
<img src="./images/site/right-heading-pic.jpg"/></div><hr/>
<div class="h2">Although there are no laid out rules, prospective guilds are asked to read over the <a href="http://www.zealotsofshiverpeak.com/zos_code.php">ZoS Code</a>. Alliance Chat should be kept relatively clean and respectful with a minimum of swearing, never to be directed at someone. Alliance Chat is not a second Trade channel and should not contain any begging or spamming.<hr/>
If you are the leader of a guild, and you are interested in joining the ZoS Alliance, please follow the instructions in this thread: <a href="http://www.zealotsofshiverpeak.com/forums/viewtopic.php?t=22">ZoS Alliance Info</a>.</div>
</div>
</div>
<div id="footer" class="footer">
<p>©2005 ArenaNet, Inc. All rights reserved. ArenaNet, Arena.Net and the ArenaNet logo are trademarks
or registered trademarks of NCsoft Corporation in the U.S. and/or other countries.
Guild Wars© is a trademark of NCsoft Corporation. All rights reserved.</p>
</div></div>
<div class="title">
<embed src="./flash/zos-title.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="620" height="80"></embed>
</div>