Current location: Hot Scripts Forums » General Web Coding » CSS » CSS Drop-down Menu rendering problem in IE. HELP?!


CSS Drop-down Menu rendering problem in IE. HELP?!

Reply
  #1 (permalink)  
Old 09-07-06, 11:31 AM
martongergo martongergo is offline
New Member
 
Join Date: Sep 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Unhappy CSS Drop-down Menu rendering problem in IE. HELP?!

This is the css:

Code:
/*** Nav bar styles ***/

ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}

ul.nav{
	display: table;
}
ul.nav>li{
	display: table-cell;
	position: relative;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 2px;
}

ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	visibility: hidden;
	position: absolute;
	max-width: 40ex;
	margin-left: -6px;
	margin-top: 0px;
}

ul.nav li:hover>ul{
/*When hovered, make them appear*/
	display : block;
	visibility:visible;
}

.nav ul li a{
	/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 1px 6px;
	font-family: tahoma;
	font-size: 12px;
}

/*** Menu colors (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{
	background-color: #fff;
	color: #666666;
}


ul.nav li:hover,
.nav ul li a:hover{
	background-color: #FFFFFF;
	color: #999999;
}

ul.nav li:active,
.nav ul li a:active{
	background-color: #FFFFFF;
	color: #666666;
}

ul.nav,
.nav ul{
}

.nav a{
	text-decoration: none;
}
What kind of modification is this css need to display correctly in IE also?
In FireFox works fine...but in IE it displays as a LIST without formatting...

Thanks in advice.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with a Drop dow menu chen1 JavaScript 1 02-04-06 03:40 PM
CSS drop down menu!! nouaman CSS 6 07-01-05 04:46 PM
Xml / Dom / Css Mark_SC.SE JavaScript 0 06-29-05 08:05 AM
Creating a drop down menu ? ? ? Spreegem PHP 4 03-09-05 09:34 AM
drop down menu problem !!! nurqeen PHP 1 02-08-04 08:07 PM


All times are GMT -5. The time now is 01:53 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.