Hi
Ich habe nur eine kleine Frage an euch:
Ich erstelle mir gerade eine XHTML-basierende Webseite. Ich habe jetzt eine JavaScript-Navigation gefunden die ich einbauen möchte. Das Problem ist nur das diese im Firefox, wenn das Dokument als XHTML Dokument deklariert ist, also so:
Danke im Voraus
Ich habe nur eine kleine Frage an euch:
Ich erstelle mir gerade eine XHTML-basierende Webseite. Ich habe jetzt eine JavaScript-Navigation gefunden die ich einbauen möchte. Das Problem ist nur das diese im Firefox, wenn das Dokument als XHTML Dokument deklariert ist, also so:
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
[/html]nicht richtig dargestellt wird (die Zeilen sind viel zu hoch). Im IE funkt sie ohne Probleme. Wenn das Dokument nicht als XHTML deklariert ist funkt sie auch im FF super.
Jetzt ist meine Frage, was kann ich machen damit sie auch im Firefox funktioniert wenn das Dokument als XHTML deklariert ist?
Hier noch der Gesamte Quelltext der Navigation:
[html]<style>
<!--
.BorderOn { width:90px;
margin-left:10px;
border:1px solid #DADADA }
.BorderOff { width:90px;
margin-left:0px;
border:1px solid #C0C081 }
A.Links:link {color:#DADADA; text-decoration:none;}
A.Links:visited {color:#DADADA; text-decoration:none;}
A.Links:active {color:#000000; text-decoration:none;}
A.Links:hover {color:#000000; text-decoration:none;}
//-->
</style>
<script language="JavaScript1.2">
<!--
offMessage = "Schön dass Sie da sind!"
function boxOn(which,message){
if (document.all||document.getElementById){
which.className='BorderOn'
if (document.getElementById)
{document.getElementById("Message").innerHTML = message}
else {Message.innerHTML = message}
}
}
function boxOff(which){
if (document.all||document.getElementById){
which.className='BorderOff'
if (document.getElementById)
{document.getElementById("Message").innerHTML = offMessage}
else {Message.innerHTML = offMessage}
}
}
//-->
</script>
<body bgcolor="#407491">
<table cellpadding="0" cellspacing="0" width="100">
<tr>
<td align="center"><!-- Header Table // --> <table cellpadding="3" cellspacing="0" bgcolor="#000000"
class="BorderOff">
<tr>
<td><p align="center"><a href="http://www.jsunity.de"><strong><font color="#C0C081" size="2" face="Arial">JSUNITY</font></strong></a></td>
</tr>
</table>
<table cellpadding="3" cellspacing="0" class="BorderOff" onMouseover="boxOn(this,'Sie finden hier die wohl größte JavaScript-Sammlung im deutsch- sprachigen Raum.')" onMouseout="boxOff(this)" bgcolor="#525252">
<tr>
<td><p align="center"><font color="#00FF80" size="2" face="Arial"><a class="Links" href="http://www.jsunity.de/index.php?opencat=Home" target="_blank">Home</a></font></td>
</tr>
</table>
<table cellpadding="3" cellspacing="0" class="BorderOff" onMouseover="boxOn(this,'Hier finden Sie unsere JavaScripts aufgeteilt in mehrere Kategorien.')" onMouseout="boxOff(this)" bgcolor="#707070">
<tr>
<td><p align="center"><font color="#00FF80" size="2" face="Arial"><a class="Links" href="http://www.jsunity.de/index.php?opencat=JavaScripts" target="_blank">JavaScripts</a></font></td>
</tr>
</table>
<table cellpadding="3" cellspacing="0" class="BorderOff" onMouseover="boxOn(this,'PHP - die perfekte Sprache.')" onMouseout="boxOff(this)" bgcolor="#8C8C8C">
<tr>
<td><p align="center"><font color="#00FF80" size="2" face="Arial"><a class="Links" href="http://www.jsunity.de/index.php?opencat=PHP+%2F+MySQL" target="_blank">PHP/MySQL</a></font></td>
</tr>
</table>
<table cellpadding="3" cellspacing="0" class="BorderOff" onMouseover="boxOn(this,'Hier finden Sie zahlreiche Photoshop-Tutorials.')" onMouseout="boxOff(this)" bgcolor="#9B9B9B"> <tr>
<td><p align="center"><font color="#00FF80" size="2" face="Arial"><a class="Links" href="http://www.jsunity.de/index.php?opencat=Photoshop" target="_blank">Photoshop</a></font></td>
</tr>
</table>
<table cellpadding="3" cellspacing="0" class="BorderOff" onMouseover="boxOn(this,'Im Impressum finden Sie alles Wissenswerte über diese Seiten.')" onMouseout="boxOff(this)" bgcolor="#A7A7A7">
<tr>
<td><p align="center"><font color="#00FF80" size="2" face="Arial"><a class="Links" href="http://www.jsunity.de/index.php?opencat=Impressum" target="_blank">Impressum</a></font></td>
</tr>
</table>
<table cellpadding="1" cellspacing="0" bgcolor="#BABA74" width="90">
<tr>
<td><table cellpadding="3" cellspacing="0" bgcolor="#000000" width="88" height="150" background="gfx/js_logopic3.jpg">
<tr>
<td align="left" valign="top"><p align="center"><strong><font id="Message" color="#C0C081" face="Arial" size="2">Welcome to JSUNITY!</font></strong></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
Zuletzt bearbeitet: