Page 1 of 1

{NAV_LIST_TOP} Problem by viewing in Internet Explorer

Posted: Tue 19. Apr 2005, 19:26
by Pulvertoast
Hello!

This is my site: http://www.fnexus.de/kibetrading/index.php

My problem is that the top border of the {NAV_LIST_TOP} is not visible in Internet Explorer but in Mozilla Firefox I can see it.

Here ist the CSS Code from {NAV_LIST_TOP}:

Code: Select all

/* CSS for the top level list */
#list_top_ul {
	padding: 3px 3px;
	margin-left: 0;
        margin-bottom: 0;
	border-bottom: 1px solid #5E747F;
	font: bold 12px Verdana, sans-serif;
        
}
#list_top_ul li {
	list-style: none;
	margin: 3px 3px;
	display: inline;

}
#list_top_ul li a {
	padding: 3px 0.5em;
	margin-left: 3px;
	border: 1px solid #000000;
	border-bottom: none;
	background: #D7DEE5;
	text-decoration: none;

}
#list_top_ul li a:link { color: #5E747F; }
#list_top_ul li a:visited { color: #5E747F; }
#list_top_ul li a:hover {
	color: Black;
	background: #92A1AF;;
	border-color: #227;
}
#list_top_ul li a#list_top_active_link, #list_top li a#list_top_home_active_link {
	background: white;
	border-bottom: 1px solid white;
}
Can anyone help me?
It's important for me that the page is correctly displayed in both browsers!

Posted: Wed 20. Apr 2005, 10:34
by Pulvertoast
Ahhh... Problem gelöst!

Hier der Fehler:

So war es vorher. Hab die Nav_List_Top einfach so in die Zeile gesetzt.
In Firefox zeigt er das zwar alles richtig an aber nicht im IE!

Code: Select all

<!-- Navigation -->
<tr>
<td width="750px" align="left" valign="bottom" height="40px" background="http://www.fnexus.de/kibetrading/grafiken/kibe_top_navigation.jpg">

{NAV_LIST_TOP}

</td>
</tr>
Die Lösung war ganz einfach. Hab einfach einen Spacer über der Nav-List_top eingefügt.
Jetzt zeigt auch der IE alle korrekt an.

Code: Select all

<!-- Navigation -->
<tr>
<td width="750px" align="left" valign="bottom" height="40px" background="http://www.fnexus.de/kibetrading/grafiken/kibe_top_navigation.jpg">

{SPACER:1x1}<br>
{NAV_LIST_TOP}

</td>
</tr>
Hoffe es hilft irgendwem anderen auch! :)

Posted: Wed 20. Apr 2005, 10:47
by pico
Hi

can't see any difference here :?:

Posted: Wed 20. Apr 2005, 10:52
by Pulvertoast
Hast bestimmt auf die Page geguckt als ich den Fehler schon behoben hatte.

Aber danke! :)