Hoping you guys can help, been trying to solve this problem which seems simple but I am unable to do it lol.
Before we begin here is my page I am working on: http://www.taintedstudio.com/wowGuild
Ok my current concern is not the text, content or the links within the page I can deal with that in due time.
My concern is with the header and footer, have the container bg stick out at the end.
Here is my current css code:
@charset "utf-8";
/* CSS Document */
/* Basic Elements */
html {
margin: 0;
padding: 0;
}
body{
margin:0px;
padding: 0px;
background:url(resources/gigsieBackground.jpg);
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
text-decoration: none;
}
a:link {
font-weight: bold;
text-decoration: none;
color: #FFFFFF;
}
a:visited {
font-weight: bold;
text-decoration: none;
color: #FFFFFF;
}
a:hover, a:active {
text-decoration: none;
color: #7d7d7d;
display: inline;
margin-right: 1.3em;
margin-left: 1.3em;
}
acronym {
border-bottom: none;
}
/* specific divs */
#container{
width: 780px;
margin-right: auto;
margin-left: auto;
margin-top: 10px;
background: url(resources/containerBG.jpg);
background-repeat:repeat-y;
}
#pageHeader{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
text-decoration: none;
width: 780px;
height: 50px;
background-image: url(resources/headerBorder.gif);
background-repeat: no-repeat;
}
#pageFooter{
width: 780px;
background-image: url(resources/footerBorder.gif);
background-repeat: no-repeat;
}
#intro {
clear:both;
margin: 20px 20px 20px 10px;
width: 160px;
float: left;
}
#intro p {
font: italic 10pt/22pt georgia;
text-align:center;
}
#linkList {
position: absolute;
top: 129px;
right: 0;
left: 158px;
bottom: 0px;
width: 702px;
font: normal 10px verdana, Geneva, Arial, Helvetica, sans-serif;
}
#linkList ul {
list-style: none;
padding: 0px;
margin: 0px;
}
#linkList li{
display: inline;
}
#linkList li a {
display: inline;
padding:5px;
margin: 1px;
border: 1px solid white;
width: 100px;
height: 20px;
background: #333333;
color: white;
text-decoration: none;
}
#linkList li a:hover {
background: #666666;
}
and here is the current HTML code:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8” />
<meta name=”keywords” content=”World, Of, Warcraft, Guild, Outland, Alliance, Creed” />
<meta name=”description” content=”Latest Alliance Outland Server Creed Guild News, Info and Updates” />
<meta name=”author” content=”taintedstudio.com” />
<title>Creed: The Beauty Of True Gamers</title>
<style type="text/css">
<!--
@import url("body.css");
-->
</style>
<link href="body.css" rel="stylesheet" type="text/css">
</head>
<body onload="window.defaultStatus='Outland Guild: The Beauty Of True Gamers';" id="css-zen-garden">
<div id="container">
<div id="pageHeader">
<div id="intro">
<h1><span>Outland Guild</span></h1>
<h2><span>The Beauty of <acronym title="WoW Guilds Beauty">True Gamers</acronym></span></h2>
</div>
<div id="Guild Basics">
<h3><span>Introduction</span></h3>
<p class="p1"><span><acronym title="Guild Info">Alliance based guild on Outland Server</acronym></span></p>
</div>
</div>
<div id="pageMain">
<h3> Body </h3>
</div>
<div id="pageFooter">
<h3> Footer </h3>
</div>
<div id="linkList">
<div id"=ll1">
<ul>
<li><a href="/" >News </a></li>
<li><a href="/"> Calendar </a></li>
<li><a href="/" >Progress </a></li>
<li><a href="/" >Media </a></li>
<li><a href="/" >Forums </a></li>
<li><a href="/" >Member List </a></li>
<li><a href="/" >Join Us </a></li>
<li><a href="/" >Contact </a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
Now trying to visually explain what I am trying to achieve is shown in these image below:
This is what I want it to be like:
This is my current situation:
If there is anything else you may require to help me please let me know, I will post it here. Thank You Again in advanced… rather new to css thats all trying to gets to grips with it.