need help on floating guest

Ive had a look at the xml. They are using CSS to show this banner.

Code:
#topbar
{   
	PADDING-TOP: 5px;
	PADDING-BOTTOM: 5px;
	PADDING-RIGHT: 5px; 
	PADDING-LEFT: 30px;
	VISIBILITY: hidden;
	BORDER-TOP: black 1px solid;
	BORDER-BOTTOM: black 1px solid;
	BORDER-RIGHT: black 1px solid;
	BORDER-LEFT: black 1px solid;
	WIDTH: 450px;
    FONT-FAMILY: Tahoma;
	POSITION: absolute;
	BACKGROUND-COLOR: white
}

The problem I am having is inserting the correct code to position it centrally.

The usual CSS for centering is this.

#centered{
position: absolute;
top: 50%;
left: 50%;
width:1024px;
height: 768px;
margin-left:-512px;
margin-top:-384px;
}

Maybe if you take this problem to the programming section the genius guys can help you out.

:D
 
Back
Top