{NAV_LIST_TOP} Problem by viewing in Internet Explorer

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
Pulvertoast
Posts: 7
Joined: Thu 31. Mar 2005, 11:48
Contact:

{NAV_LIST_TOP} Problem by viewing in Internet Explorer

Post 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!
Pulvertoast
Posts: 7
Joined: Thu 31. Mar 2005, 11:48
Contact:

Post 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! :)
Last edited by Pulvertoast on Wed 20. Apr 2005, 10:50, edited 1 time in total.
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

can't see any difference here :?:
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
Pulvertoast
Posts: 7
Joined: Thu 31. Mar 2005, 11:48
Contact:

Post by Pulvertoast »

Hast bestimmt auf die Page geguckt als ich den Fehler schon behoben hatte.

Aber danke! :)
Post Reply