CSS innerhalb eines <layer><layer>
Horst
- html
0 Thomas0 Thomas J.S.
Hallo,
hab da ein prob mit <layer ...
----- im head -----
<style type="text/css">
.menu { font-family:verdana, arial, tahoma; color:#DED6D6; font-size:11px; line-height:14px; vertical-align:middle; font-weight:bold; }
</style>
-------------------
----- im body -----
<layer name="header" top="0" left="0" width="100%" z-index="2">
<table cellSpacing="0" cellPadding="0" width="100%" border="0">
<tr>
<td colspan="2" class="menu" style="background-color:#3F2F3F;" align="right" width="100%">Ein Text</td>
</tr>
</table></layer>
-------------------
und das alles NUR für den Netscape 4.x
sowie die tabelle INNERHALB des layers liegt,
wird class="menu" ignoriert ...
Wer weiss, wie ich das hinkriegen kann??
Danke im voraus - Horst
Hi Horst,
und das alles NUR für den Netscape 4.x
Ich weiß nicht, ob dir die Antwort hilft, aber ignoriere den Netscape 4 doch einfach. Es lohnt sich eh nicht mehr für die paar Besucher. Leite sie auf eine separate Seite um, und sage ihnen, dass sie einen moderneren Browser benötigen.
Thomas
Hallo,
so geht es bie mit auch mit dem NS4.78
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style type="text/css">
.menu { font-family:verdana, arial, tahoma; color:#DED6D6; font-size:11px;
line-height:14px; vertical-align:middle; font-weight:bold; background-color:#3F2F3F; }
</style>
</head>
<body>
<layer name="header" top="0" left="0" width="100%" z-index="2">
<table cellSpacing="0" cellPadding="0" width="100%" border="0">
<tr>
<td colspan="2" class="menu" align="right" width="100%">Ein Text</td>
</tr>
</table></layer>
</body>
</html>
Grüße
Thomas