Yet another CSS Problem (borders this time)

Associate
Joined
1 May 2006
Posts
810
Location
Bristol, UK
To the CSS guru's :)

The following CSS is my site container:
Code:
#container
	{
	position: absolute;
	left: 10px;
	right: 10px;
	border-left-color: #660099;
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: #660099;
	border-right-style: solid;
	border-right-width: 1px;
	}
However, the borders fail to appear See Thus. The offending CSS file can be found Here in case I've messed something up further down.

Thanks for reading :)
 
Hail Augmented!

What you said....bang on. Changed to static/relative/absolute and everything works!

However, I need to keep the elements that are fixed, fixed if you know what I mean. How do I achieve this without using position: fixed?

Cheers in advance
 
Back
Top Bottom