folgendes problem: header meiner seite mit anklickbarem logo links und hotlinks (text) rechts (bottom ausgerichtet).
bei verkleinerung der seite sollte sich die höhe nicht ändern und der text sichtbar über das bild wandern.
meine derzeitige lösung ist sicher nicht die optimalste:
css:
PHP-Code:
#top {
text-align: right;
padding: 0px 10px 0px 0px;
background-color: #333333;
height: 70px;
z-index: 1; }
#logo {
position: absolute;
z-index: 2;
margin: 5px 5px 5px 5px; }
#logo[id] {
margin: 10px 10px 10px 10px; }
html:
Code:
<div id="logo">
<a href="index.html"><img src="pics/logo.gif" alt="Logo" name="Logo" width="468" height="60" border="0" id="Logo" /></a>
</div>
<div id="top"><br /><br /><br />
<a href="#">Text</a> | <a href="#">Text</a> | <a href="#">Text</a>
</div>
danke euch schonmal...