473,395 Members | 2,079 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Stacking problem in IE

Hi,

I have implemented CSS dropdown menus. But there is one problem now with
IE6... When I hover over a menu item and the sub-menu opens and then I
want to move over the submenu, the submenu disappears... :(

Works in FF. The page validates as XHTML 1.0 Strict.

Thank you for your help!

Best regards,
Axel

--
By three methods we may learn wisdom:
First, by reflection, which is noblest;
Second, by imitation, which is easiest;
and third by experience, which is the bitterest.
Jul 2 '06 #1
7 1648
Axel Siebenwirth wrote:
I have implemented CSS dropdown menus. But there is one problem now
with IE6... When I hover over a menu item and the sub-menu opens and
then I want to move over the submenu, the submenu disappears... :(

Works in FF. The page validates as XHTML 1.0 Strict.
You forgot the URL.

--
-bts
-Warning: I brake for lawn deer
Jul 2 '06 #2
Axel Siebenwirth wrote:
Hi,

I have implemented CSS dropdown menus. But there is one problem now with
IE6... When I hover over a menu item and the sub-menu opens and then I
want to move over the submenu, the submenu disappears... :(
Oops, the URL is http://www.refugio-thueringen.de/dev/.

The CSS is at http://www.refugio-thueringen.de/dev/basic.css.

Thank you!
>
Works in FF. The page validates as XHTML 1.0 Strict.

Thank you for your help!

Best regards,
Axel

--
By three methods we may learn wisdom:
First, by reflection, which is noblest;
Second, by imitation, which is easiest;
and third by experience, which is the bitterest.
Jul 2 '06 #3
Axel Siebenwirth wrote:
Axel Siebenwirth wrote:
>Hi,

I have implemented CSS dropdown menus. But there is one problem now with
IE6... When I hover over a menu item and the sub-menu opens and then I
want to move over the submenu, the submenu disappears... :(

Oops, the URL is http://www.refugio-thueringen.de/dev/.
Not only does the submenu disappear, when visible it is nearly
transparent and very hard to read.

A quick glance ... you have almost everything set with pixel-precision
positioning. I for one would not want to debug that.

If JavaScript is disabled in IE, there is no submenu at all. You've lost
about 10% of your visitors.

Regarding your hard-coded fonts, see this page:
http://k75s.home.att.net/fontsize.html
The CSS is at http://www.refugio-thueringen.de/dev/basic.css.
You've not assigned a body background color, so I see my ugly default
purple.

--
-bts
-Warning: I brake for lawn deer
Jul 2 '06 #4
Hi,

Beauregard T. Shagnasty wrote:
Axel Siebenwirth wrote:
>Axel Siebenwirth wrote:
>>Hi,

I have implemented CSS dropdown menus. But there is one problem now with
IE6... When I hover over a menu item and the sub-menu opens and then I
want to move over the submenu, the submenu disappears... :(
Oops, the URL is http://www.refugio-thueringen.de/dev/.

Not only does the submenu disappear, when visible it is nearly
transparent and very hard to read.
Yes. I don't know why. Does anybody have an idea how to fix this?
A quick glance ... you have almost everything set with pixel-precision
positioning. I for one would not want to debug that.
That has nothing to do with submenu-transparency/-disappearing problem I
guess.
If JavaScript is disabled in IE, there is no submenu at all. You've lost
about 10% of your visitors.
The Javascript is only for IE since it doesn't support hover for
anything else then "a". So this fix is needed. Otherwise I wouldn't have
a dropdown menu at all. Most of the dropdowns in the web are completely
javascript so I am pretty good with my CSS menu.
Regarding your hard-coded fonts, see this page:
http://k75s.home.att.net/fontsize.html
But Verdana looks so nice ;)
>The CSS is at http://www.refugio-thueringen.de/dev/basic.css.

You've not assigned a body background color, so I see my ugly default
purple.
Fixed. Background is white now. You set your default background-color to
purple to see what pages don't set their background-color? ;)

Regards,
Axel
--
By three methods we may learn wisdom:
First, by reflection, which is noblest;
Second, by imitation, which is easiest;
and third by experience, which is the bitterest.
Jul 2 '06 #5
Axel Siebenwirth wrote:
Hi,

Beauregard T. Shagnasty wrote:
>Axel Siebenwirth wrote:
>>Axel Siebenwirth wrote:
Hi,

I have implemented CSS dropdown menus. But there is one problem
now with IE6... When I hover over a menu item and the sub-menu
opens and then I want to move over the submenu, the submenu
disappears... :(
Oops, the URL is http://www.refugio-thueringen.de/dev/.

Not only does the submenu disappear, when visible it is nearly
transparent and very hard to read.

Yes. I don't know why. Does anybody have an idea how to fix this?
Your /dev/ pages seem to have disappeared?
>A quick glance ... you have almost everything set with
pixel-precision positioning. I for one would not want to debug that.

That has nothing to do with submenu-transparency/-disappearing
problem I guess.
Transparency, no. Disappearing, possibly. The pixel-jogging bugs of IE
may be the reason. When the cursor is moved, the menu jogs, and is no
longer under the 'hover' position. That's a guess.
>If JavaScript is disabled in IE, there is no submenu at all. You've
lost about 10% of your visitors.

The Javascript is only for IE since it doesn't support hover for
anything else then "a". So this fix is needed. Otherwise I wouldn't
have a dropdown menu at all. Most of the dropdowns in the web are
completely javascript so I am pretty good with my CSS menu.
You may be able to set the <ato display: block and eliminate the need
for most of the JavaScript.
>Regarding your hard-coded fonts, see this page:
http://k75s.home.att.net/fontsize.html

But Verdana looks so nice ;)
Unless the visitor doesn't have it...
>>The CSS is at http://www.refugio-thueringen.de/dev/basic.css.

You've not assigned a body background color, so I see my ugly
default purple.

Fixed. Background is white now. You set your default background-color
to purple to see what pages don't set their background-color? ;)
Of course!

--
-bts
-Warning: I brake for lawn deer
Jul 2 '06 #6
Beauregard T. Shagnasty wrote:
Axel Siebenwirth wrote:
>Hi,

Beauregard T. Shagnasty wrote:
>>Axel Siebenwirth wrote:

Axel Siebenwirth wrote:
Hi,
>
I have implemented CSS dropdown menus. But there is one problem
now with IE6... When I hover over a menu item and the sub-menu
opens and then I want to move over the submenu, the submenu
disappears... :(
Oops, the URL is http://www.refugio-thueringen.de/dev/.
Not only does the submenu disappear, when visible it is nearly
transparent and very hard to read.
Yes. I don't know why. Does anybody have an idea how to fix this?

Your /dev/ pages seem to have disappeared?
I put it in the root now even though I am not quite finished yet...
www.refugio-thueringen.de
>
>>A quick glance ... you have almost everything set with
pixel-precision positioning. I for one would not want to debug that.
That has nothing to do with submenu-transparency/-disappearing
problem I guess.

Transparency, no. Disappearing, possibly. The pixel-jogging bugs of IE
may be the reason. When the cursor is moved, the menu jogs, and is no
longer under the 'hover' position. That's a guess.
>>If JavaScript is disabled in IE, there is no submenu at all. You've
lost about 10% of your visitors.
The Javascript is only for IE since it doesn't support hover for
anything else then "a". So this fix is needed. Otherwise I wouldn't
have a dropdown menu at all. Most of the dropdowns in the web are
completely javascript so I am pretty good with my CSS menu.

You may be able to set the <ato display: block and eliminate the need
for most of the JavaScript.
See http://www.alistapart.com/articles/horizdropdowns/ especially the
section "Making it work"...
>
>>Regarding your hard-coded fonts, see this page:
http://k75s.home.att.net/fontsize.html
But Verdana looks so nice ;)

Unless the visitor doesn't have it...
>>>The CSS is at http://www.refugio-thueringen.de/dev/basic.css.
You've not assigned a body background color, so I see my ugly
default purple.
Fixed. Background is white now. You set your default background-color
to purple to see what pages don't set their background-color? ;)

Of course!

--
By three methods we may learn wisdom:
First, by reflection, which is noblest;
Second, by imitation, which is easiest;
and third by experience, which is the bitterest.
Jul 2 '06 #7
Axel Siebenwirth <no****@nospam.comwrites:
See http://www.alistapart.com/articles/horizdropdowns/ especially the
section "Making it work"...
Admittedly, it generally kind of works if you disable CSS.

* no keyboard navigation
* it's idiotic to rely on script (IE) to reveal content that was removed
by CSS in the first place
* 'CSS dropdowns' are the joy of the UI clue-challenged;
*if* you think you need a 'dropdown' menu, you *do* need timeouts for
showing as well as hiding them as well -- everything else is a
usability and accessibility nightmare
--
||| hexadecimal EBB
o-o decimal 3771
--oOo--( )--oOo-- octal 7273
205 goodbye binary 111010111011
Jul 3 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Martin Geisler | last post by:
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQBDNmLx6nfwy35F3TgRAtjIAJ9ryEjr0kaaEapRD0z1bHQYmKi+1wCdEOZC /wY2033SyIVl0za07v8RMkk= =6BZ+ -----END PGP SIGNATURE-----
1
by: | last post by:
How do I control the layering of 4 forms of identical size and position to cause the desired form to be second from the top.. Form1 has my welcome screen etc.and the code for file manipulations...
5
by: Gérard Talbot | last post by:
Hello fellow colleagues, Can someone explain to me why, in this page http://www.aplus.co.yu/css/z-pos/index4.php#content , AP1 should not be in front of (overlapping) AP2 ? Recap: RP1 is...
28
by: Wladimir Borsov | last post by:
The HTML source of one of my web pages starts simplified with a code like: ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ..... <BODY BACKGROUND="images/myback.gif"> <div...
2
by: Tsmek | last post by:
In the access report detail section I am looking for a way to format a large text box to go behind multiple smaller text boxes. How should I format the text boxs to acheive this? My objective is to...
0
tharden3
by: tharden3 | last post by:
The links and buttons are stacking up and I need space between them. Please help me fix this. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"...
8
by: Warren Tang | last post by:
Hi How can I make a div (position relative) topmost? I tried the z-index, but no matter how I set it, some portion of the div is always covered. Any tips or suggestions? Thanks in advance. ...
1
by: matthewaveryusa | last post by:
I have a timer T that launches an event on each tick: void t_Tick(object sender, EventArgs e) { System.Threading.Thread TickThread = new...
6
RedSon
by: RedSon | last post by:
Greetings all, Last weekend I was at my son's football class (soccer). Every week they play this game where the coach scatters a bunch of cones across the field, and the kids pretend they are...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.