ProSilver: Logo mittig anordnen
Verfasst: 25.11.2007 15:50
Wie kann man bei ProSilver das Logo in der Mitte, statt links, anordnen?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
#logo {
float: left;
width: auto;
padding: 10px 13px 0 10px;
}
Code: Alles auswählen
#logo {
float: center;
width: auto;
padding: 10px 13px 0 10px;
}
Code: Alles auswählen
float: center;
probiers mal mit float:left; rausnehmenBoecki91 hat geschrieben:gibt es nicht, folglich funktioniert es auch nicht.Code: Alles auswählen
float: center;
Code: Alles auswählen
<div id="site-description">
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<h1>{SITENAME}</h1>
<p>{SITE_DESCRIPTION}</p>
<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>
</div>
Code: Alles auswählen
<div id="site-description">
<div align="center"><a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
</div>
<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>
</div>
Code: Alles auswählen
<div align="center">
Code: Alles auswählen
<div style="text-align: center; align: center;">