Web Design and Development Forums

CSS Menu problem with firefox and IE

This is a discussion on "CSS Menu problem with firefox and IE" within the CSS Forum section. This forum, and the thread "CSS Menu problem with firefox and IE are both part of the Design Your Website category.


Go Back   Webforumz.com > Design Your Website > CSS Forum

Welcome to Webforumz.com.
Register Now Register now!

Reply
 
LinkBack Thread Tools Rate Thread
Old Apr 21st, 2008, 11:35   #1 (permalink)
New Member
 
Join Date: Apr 2008
Location: India
Age: 20
Posts: 4
CSS Menu problem with firefox and IE

Hello ...
I have just made a site.. i implemented CSS Menu... I got it ready made from
other site.. Well its working fine with the other site.. but not for me..

Here is the site link

http://www.mitsot.com/demo/

see above link in firefox or opera.. menu works..
but when u visit same site via IE you can see menu works but not properly..

Can any get my problem solved... I havent pasted a single code here...

Better you go to my code using view source and plz correct me...

I will be really thankfull to you..
freeadnetwork is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 21st, 2008, 15:30   #2 (permalink)
Up'n'Coming Member
 
Join Date: Apr 2008
Location: Or-Yehuda, Israel
Age: 60
Posts: 87
Re: CSS Menu problem with firefox and IE

Change the following:
Code: Select all
/* 2nd Menu */
#nav ul li:hover li a,
#nav ul li.iehover li a {
  background:#5EA9B9;
  color:#000000;
  height:22px; 
  border-bottom: 0px solid #FFFFFF;
  text-decoration:none;
  text-align:left;
  font-style: italic;
  width:175px;
  margin-left: 100px;
  filter:alpha(opacity=70);
  -moz-opacity:.70;
}
and

Code: Select all
/* 2nd Menu Hover Persistence */
#nav ul li:hover li a:hover,
#nav ul li:hover li:hover a,
#nav ul li.iehover li a:hover,
#nav ul li.iehover li.iehover a {
  background:#5EA9B9;
  color:#000000;
  display: block;
  height:22px; 
  width:175px; 
  text-decoration:underline;
  font-style: italic;
  border-bottom: 0px solid #FFFFFF;
  padding:0px;
  margin:0px;
  margin-left:100px;
  text-align:left;
  filter:alpha(opacity=70);
  -moz-opacity:.70;
}
shalom_m is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 21st, 2008, 15:36   #3 (permalink)
Up'n'Coming Member
 
Join Date: Apr 2008
Location: Or-Yehuda, Israel
Age: 60
Posts: 87
Re: CSS Menu problem with firefox and IE

Alternatively;

Add z-index
Code: Select all
#nav ul ul {
  width: 120px; /*For KHTML*/
  list-style: none;
  margin-left: -1px;
  border-left: 0px solid #ccc;
  z-index: 9;
}


Either will work - just different effects
shalom_m is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 22nd, 2008, 04:13   #4 (permalink)
New Member
 
Join Date: Apr 2008
Location: India
Age: 20
Posts: 4
Re: CSS Menu problem with firefox and IE

Thanks for kind help.. but see this line in your first post
margin-left: 100px;

This line was never in my code.. how u got it there??
well i tried both tricks you said..
you can check my code again.. but its still not working..

i m using IE 6

well here are links for css

http://www.mitsot.com/demo/include/main.css
http://www.mitsot.com/demo/include/menu_new.css


http://www.mitsot.com/demo/include/menu_new.js


Please you test yourself in html then let me know..

thanks..
freeadnetwork is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 22nd, 2008, 04:17   #5 (permalink)
New Member
 
Join Date: Apr 2008
Location: India
Age: 20
Posts: 4
Re: CSS Menu problem with firefox and IE

Please make a note that there is .JS file also included..
if i exclude it then IS doesnt show the menu..
freeadnetwork is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 22nd, 2008, 04:30   #6 (permalink)
New Member
 
Join Date: Apr 2008
Location: India
Age: 20
Posts: 4
Re: CSS Menu problem with firefox and IE

Anyways i got solution.. and its working fine.. now
i added this code

Code: Select all
<!--[if lte IE 6]>
<style type="text/css">

#nav ul li {display: inline; /*For IE*/  position: relative; }

#nav ul.menu ul {
  display: none;
  position: absolute;
  top: 0;
  left: 70px;
  color:#FFFFFF;
} 
</style>

<![endif]-->

and it worked... Thanks for kind info
freeadnetwork is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 22nd, 2008, 04:37   #7 (permalink)
Up'n'Coming Member
 
Join Date: Apr 2008
Location: Or-Yehuda, Israel
Age: 60
Posts: 87
Re: CSS Menu problem with firefox and IE

I have checked in both FF and IE6.
It is working fine now.
shalom_m is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
css, css menu, css menu help, css menu problem

Thread Tools
Rate This Thread
Rate This Thread:

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
firefox problem ahwell Flash & Multimedia Forum 11 Apr 17th, 2008 11:44
How to get rid of lines around menu buttons in FireFox using DreamWeaver? Reminis Flash & Multimedia Forum 9 Jan 24th, 2008 17:19
Paragraph & menu showing wrong in FireFox cbrams9 CSS Forum 9 Oct 25th, 2006 14:19
CSS menu displaying wrong in Firefox (fine in IE) camcc CSS Forum 10 Oct 21st, 2006 02:05
Firefox problem Powderhound HTML Forum 6 Sep 6th, 2006 21:46



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 10:00.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59