I'm trying to include a php-file containing a text-link-menu in a table inside serendipity and it seems to break the css-styling in Internet Explorer. In Firefox it's working beautifully.
I have embedded the command
Code: Select all
include('../textlinksmenu.php');Any hints to why Internet Explorer is troublesome?
The code in "textlinksmenu.php" is as following:
Code: Select all
<html>
<link href="../main_sitewide.css" rel="stylesheet" type="text/css">
<body>
<center><table border="0">
<tr>
<td><div align="center"><a href="../gallery/index.php" class="Maincss">Galleri</a> | <a href="../blog/index.php" class="Maincss">Blogg</a> | <a href="../guestbook/view.php" class="Maincss">Gästbok</a> | <a href="../links.html" class="Maincss">Länkar</a> | <a href="../index.html" target="_parent" class="Maincss">Hem</a> </div></td>
</tr>
</table>
</center>
<br clear="all" />
</body>
</html> pischla