I currently try to port a template based on YAML to WB.
Can anyone help me in finding out, what I have to change to achieve that the header (i.e. the top navigation line) behaves in IE (7) the same way as in Firefox and all the other browsers.
Thanks
[gelöscht durch Administrator]
I don't understand what exactly you mean but I checked your template and the paths in your index.php file are incorrect. For example:
<link href="css/zentrale.css" rel="stylesheet" type="text/css"/>
should be:
<link href="<?php echo TEMPLATE_DIR; ?>/css/zentrale.css" rel="stylesheet" type="text/css" />
After you correct your paths check your CSS files. You have a few of them and it's not necessary. Your menu is not visible because it's not configured properly in your CSS file. For starters change "top: -1.5em;" to top: 1.5em; in your CSS's #topnav section.