Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

CSS Forum


You are currently viewing our CSS Forum as a guest. Please register to participate.
Login



Reply
CSS Navigation Menu IE Issue
Old 11-14-2008, 06:50 PM CSS Navigation Menu IE Issue
Novice Talker

Posts: 6
Trades: 0
Hello,
I am new to XHTML, I designed a navigation menu using CSS and it looks great in IE 6 and Firefox, but in IE 5 the menu position is off. Thanks in advance for any help!
I'll paste one menu and the CSS below...

<img style="border: 0;" id="logo" src="images/products_01.jpg" alt="" width="396" height="149" /></a>

<div id="nav">
<ul>

<li style="margin-left:15px;">
<a href="index1.html"><font color="#333333">Home</font></a></li>
<li>
<a href="necklaces1.html" onmouseover="dropdownmenu(this, event, menu1, '50px')" onmouseout="delayhidemenu()">
<font color="#333333">Necklaces</font></a></li>
<li> <a href="earrings.html">
<font color="#333333">Earrings</font></a></li>
<li><a href="braceletswatches.html">
<font color="#333333">Bracelets &amp; Watches</font></a></li>
<li style="border:none;">
<a href="rings.html"><font color="#333333">Rings</font></a></li>
<li style="margin-left:15px;">
<a href="clothing.html"><font color="#333333">Clothing</font></a></li>
<li><a href="footwear.html">
<font color="#333333">Footwear</font></a></li>
<li><a href="accessories.html">
<font color="#333333">Accessories</font></a></li>
<li>
<a href="homedecor1.html" onmouseover="dropdownmenu(this, event, menu2, '50px')" onmouseout="delayhidemenu()">
<font color="#333333">Home Decor</font></a></li>
<li style="border:none;">
<a href="contact.html"><font color="#333333">Contact</font></a></li></div>
</ul>
</div>

And the CSS

#header #nav {
width : 44%;
margin : 70px 50px 0 0;
padding : 0;
float : right;
}
#header #nav ul {
margin : 0;
padding : 0;
list-style-type : none;
}
#header #nav ul li {
margin : 0 0 5px 0;
padding : 0 5px;
font-family : Georgia, "Times New Roman", Times, serif;
font-size : 10px;
font-weight : bold;
color : #0d0d0d;
border-right : 1px solid #000;
float : left;
}
#header #nav ul li a:hover {
text-decoration : underline;
color : #000;
}
Here's the 2nd menu....
<div id="index1-04"> <div id="nav" style="width: 362; height: 57">
<ul>
<li style="margin-left:15px;">
<a href="index1.html"><font color="#333333">Home</font></a></li>
<li>
<a href="necklaces1.html" onmouseover="dropdownmenu(this, event, menu1, '50px')" onmouseout="delayhidemenu()">
<font color="#333333">Necklaces</font></a></li>
<li> <a href="earrings.html">
<font color="#333333">Earrings</font></a></li>
<li><a href="braceletswatches.html">
<font color="#333333">Bracelets &amp; Watches</font></a></li>
<li style="border:none;">
<a href="rings.html"><font color="#333333">Rings</font></a></li>
<li style="margin-left:15px;">
<font color="#333333"></font><a href="clothing.html"><font color="#333333">Clothing</font></a></li>
<li><a href="footwear.html">
<font color="#333333">Footwear</font></a></li>
<li><a href="accessories.html">
<font color="#333333">Accessories</font></a></li>
<li><a href="homedecor1.html" onmouseover="dropdownmenu(this, event, menu2, '50px')" onmouseout="delayhidemenu()">
<font color="#333333">Home Decor</font></a></li>
<li style="border:none;">
<a href="contact.html"><font color="#333333">Contact</font></a></li>
<li style="border:none;">
<font color="#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp ;
</font>
<a href="http://www.jillssound.com" target="blank"><font color="#333333">www.JillsSound.com</font></a></li>
</ul>
</div>

</div>
And the CSS
#index1-04 {
position:absolute;
left:347px;
top:102px;
width:453px;
height:66px;
background : url('images/index1_04.jpg') no-repeat top right;
}

#index1-04 #nav {
margin : 10px;
width : 100%;
height: 67px;
padding : 0;
}
#index1-04 #nav ul {
padding : 0;
margin : 0px 0px 0px 30px;
list-style-type : none;
}
#index1-04 #nav ul li {
margin : 0 0 5px 0;
padding : 0 5px;
font-family : Georgia, "Times New Roman", Times, serif;
font-size : 10px;
font-weight : bold;
color : #0d0d0d;
border-right : 1px solid #000;
float : left;
}
#index1-04 #nav ul li a:hover {
text-decoration : underline;
color : #000;
}
Moondreamer is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-14-2008, 08:48 PM Re: CSS Navigation Menu IE Issue
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
Don't worry about IE5, it is a dead browser.
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.
wayfarer07 is online now
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 11-14-2008, 09:18 PM Re: CSS Navigation Menu IE Issue
Novice Talker

Posts: 6
Trades: 0
Ah, C'mon, it wasn't that long ago that I updated to IE 6!

The specific group this web site is targeting are kind of behind the times, I'm sure plenty of the viewer are still using IE 5!

Any suggestions?
Moondreamer is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 07:10 AM Re: CSS Navigation Menu IE Issue
djura's Avatar
Super Talker

Posts: 135
Name: Darko Krsmanovic
Location: Belgrade
Trades: 0
Quote:
Originally Posted by Moondreamer View Post
Ah, C'mon, it wasn't that long ago that I updated to IE 6!

The specific group this web site is targeting are kind of behind the times, I'm sure plenty of the viewer are still using IE 5!

Any suggestions?
I am watching more than 30 sites, and looking at their stats there is no more than 2 visits from users using IE below than IE6, so as I already said in some other thread, don't bother with that. I am not even testing sites for IE5...
Sorry if I am not helpful regarding your problem....
__________________

Please login or register to view this content. Registration is FREE
||
Please login or register to view this content. Registration is FREE
djura is offline
Reply With Quote
View Public Profile Visit djura's homepage!
 
Old 11-15-2008, 12:28 PM Re: CSS Navigation Menu IE Issue
jambla's Avatar
Average Talker

Posts: 20
Trades: 0
Hmmm... I agree with wayfarer07 and djura, IE5 is a dead browser. However if your site is a niche site and you find that you are getting a large enough percent of IE5 users you should find a fix for this problem.

Looking at my site stats I get around 80k unique per month and only 0.1% are IE5 users. So for me I wouldn't both with it.

If you feel that you need to get this fixed post a message and I will have a look at it for you.

Jambla
jambla is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 02:50 PM Re: CSS Navigation Menu IE Issue
Skilled Talker

Posts: 88
Trades: 0
yeah you shouldn't use ie5, you should concentrate on the following:

ie6 & ie7
firefox 2, 3 & minefield
safari 1 & 2
opera

I have a mac so i can install multiple versions and have like 3 other browsers to test in but thats because my job is making websites but yeah don't use ie5 it will be a valuable waste of your time since barely anyone will use it, i don't think educational institutions will even use it.
__________________
Graham Barnes


Please login or register to view this content. Registration is FREE
xpguy is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 05:54 PM Re: CSS Navigation Menu IE Issue
Novice Talker

Posts: 6
Trades: 0
Jambla,

Thanks for the offer to take a look at it, that would be great!

For the niche we are targeting I think it would be worth the time to get it figured out.

Thanks again!
Moondreamer is offline
Reply With Quote
View Public Profile
 
Old 11-15-2008, 11:38 PM Re: CSS Navigation Menu IE Issue
jambla's Avatar
Average Talker

Posts: 20
Trades: 0
Hello Moondreamer,

Can you send me the url so I can see the page with the images etc...

Thanks,
Jambla
jambla is offline
Reply With Quote
View Public Profile
 
Old 11-16-2008, 02:06 PM Re: CSS Navigation Menu IE Issue
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
Usage of IE5 is so minimal, that Yahoo only sends HTML and images to it, which means no CSS or behavior (JavaScript). I always recommend that people that people examine Yahoo's graded browser support before determining what browsers they will support: http://developer.yahoo.com/yui/articles/gbs/

Unless your niche is in a third-world country, it is highly unlikely that you will need to support IE 5 or IE 5.5
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.
wayfarer07 is online now
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 11-18-2008, 10:43 AM Re: CSS Navigation Menu IE Issue
Novice Talker

Posts: 6
Trades: 0
Thanks Jambla, will be sending you the URL
Moondreamer is offline
Reply With Quote
View Public Profile
 
Old 11-18-2008, 10:44 AM Re: CSS Navigation Menu IE Issue
Novice Talker

Posts: 6
Trades: 0
Did I mention that I appreciate all your input? Now I can send Jambla a PM
Moondreamer is offline
Reply With Quote
View Public Profile
 
Old 11-18-2008, 11:08 AM Re: CSS Navigation Menu IE Issue
jambla's Avatar
Average Talker

Posts: 20
Trades: 0
Just got your PM. I will have a look at your code.

Jambla
jambla is offline
Reply With Quote
View Public Profile
 
Old 11-18-2008, 01:10 PM Re: CSS Navigation Menu IE Issue
jambla's Avatar
Average Talker

Posts: 20
Trades: 0
Hello Moondreamer,

I took a look at your code and tried a few things. Most things I tried gave me another few little bugs but I was able to correct 95% of the problem the only problem that remains is in IE5 the main menu is about 4px or 5px to the right. It doesn't look that bad.

Your code:
Code:
<a href="contact.html"><font color="#333333">Contact</font></a></li>
<li style="border:none;">
<font color="#333333">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp ;
</font>
<a href="http://www.jillssound.com" target="blank"><font color="#333333">www.JillsSound.com</font></a></li>

New Code:
Code:
<a href="http://www.acowgirlsfetish.com/contact.html">
<font color="#333333">Contact</font></a></li>
<li style="border: medium none ;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="http://www.jillssound.com/" target="blank">
<font color="#333333">www.JillsSound.com</font></a></li>

Let me know if you need more help with this.
Jambla
jambla is offline
Reply With Quote
View Public Profile
 
Old 11-18-2008, 06:00 PM Re: CSS Navigation Menu IE Issue
Novice Talker

Posts: 6
Trades: 0
Thanks jambla!
Moondreamer is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to CSS Navigation Menu IE Issue
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.92679 seconds with 12 queries