CSS Logo mittig machen! HELP

04/07/2013 19:31 GameGrab#1
Hey ho wie oben bereits im Titel, möchte ich das Logo per CSS mittig machen. Weiß aber Leider nicht wie das funktionieren soll.
Kann mir da wer helfen :)?

Gibt auch ne kleine Belohnung.
10 egold.

Code:

Code:
/* Logo */

#logo a.pageLogo {
	-moz-transition: all 0.5s linear 0s;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

#logo a.pageLogo:hover {
	-moz-transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity: 0.3 !important;
}

#logo {
	height:209px;
	width:500px;
}
04/07/2013 19:44 Crosspolymer#2
margin: 0 auto;
04/07/2013 19:46 GameGrab#3
wohin?
04/07/2013 19:53 Crosspolymer#4
in #logo
Da vielleicht auch, wenns' logo plötzlich verschwindet:
#logo a.pageLogo
#logo a.pageLogo:hover
04/08/2013 14:02 Synatex#5
Hover ist unnötig, es übernimmt sämtliche Attribute des Elements die vorher zugewiesen und nicht geändert wurden.