Nicht das Gelbe vom Ei aber sollte funktionieren...
Code
#header {
text-align: center;
margin-right: auto;
margin-left: auto;
}
#middle {
text-align: center;
margin-right: auto;
margin-left: auto;
}
#header #middle a {
background-image: url(images/logo.png);
background-repeat: no-repeat;
text-align: center;
display: block;
height: 210px;
width: 1267px;
margin-right: auto;
margin-left: auto;
}
#left {
float: left;
}
#header #left a {
height: 150px;
width: 135px;
text-align: center;
background-image: url(images/logo.png);
display: block;
float: none;
}
#right {
float: right;
}
#header #right a {
background-image: url(images/logo.png);
display: block;
width: 135px;
height: 150px;
}
Alles anzeigen
PHP
<div id="header">
<div id="right"><a href="index.php"></a></div>
<div id="left"><a href="index.php"></a></div>
<div id="middle"><a href="index.php"><?php echo $mainframe->getCfg('sitename') ;?></a></div>
</div>
Edit: Links

