CSS
Posted: Thu Aug 14, 2008 4:50 pm
AHHH I need help on my webpage.
CSS Code
WebPage
http://pantheonweb.hopto.org
That blasted black bar is supposed to be behind everything.
CSS Code
Code: Select all
a:link {
color: #0099FF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #0033CC;
}
a:hover {
text-decoration: none;
color: #0066FF;
}
a:active {
text-decoration: none;
color: #FF0000;
}
body {
background-image: url(../art/things-bg.jpg);
background-color: #000000;
margin-left:0px;
margin-right:0px;
}
#mastercontainer
{
background-color:#FFFFFF;
margin-left:auto;
margin-right:auto;
margin-top:10px;
width:800px;
border:thin;
border:#000000;
border:groove;
}
#header
{
margin-left:auto;
margin-right:auto;
width:790;
background-color:#000099;
}
#footer
{
width:800px;
background-color:#000099;
color:#FFFF66;
text-align:right;
clear:both;
}
#linkbar
{
float:left;
width:15%;
padding:5px;
}
#acontent
{
float:right;
width:80%;
padding:5px;
}
#liners
{
background: #cde url(../art/line.jpg) repeat-x 100% 0;
height: 128px;
z-index:-1;
}
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Pantheon UO - The Free UO</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="liners">
</div>
<div id="mastercontainer" >
<div id="header" >
<img src="art/banner.jpg" alt="Banner Image" />
</div>
<p id="acontent" >Site Active:<br />
<br />
I am not great with PhP, so this site is done in text. If anyone has any suggestions on how to do logins and posting that would help a good bit. This is a site for the Pantheon UO shard. I wanted a truly interactive shard making use of such things as housing laying around Yew. Instead of getting lazy and making them player rentable or buyable houses. I am going to implement NPCs that can be killed, stolen from and collect things in their houses. Also they can be part of the upcoming trick or treat event for halloween. There is little to no staff interaction on this shard unless you page. All events are automatic. <br />
<br />
PantheonUO is a WIP (Work In Progress) and is not near completion.
</p>
<p id="linkbar" >
<a href="/">News</a><br />
<a href="/">Downloads</a> <br />
<a href="/">Rules</a><br />
<a href="/">Features</a><br />
<a href="/">Stats</a><br />
<a href="/">How To</a><br />
<a href="/">About Us</a><br />
<a href="/">Create Account </a><br />
</p>
<div id="footer" >
Powered By POL© Emulation - Thank You Scott and Jen
</div>
</div>
</body>
</html>
That blasted black bar is supposed to be behind everything.