Page 1 of 1

CSS guru wanted

Posted: Thu 22. Sep 2005, 15:22
by Paal
Hello,

I created 2 CCS dropdown menues to our company (phpwcms) web site.

On the first stage, the text of the link should have changed to a picture because the Polo font family, proposed by the Corporate Desing is not supported by web.

The problem is that if the cache function of the browser is switched off, due to the problem of t IE:hover, the top level menue is blinked when mousOvering.

http://www.eon-is.hu/index.php?lang,hu (under the eon-is logo)
http://www.eon-is.hu/index.php?e.on-is,hu (topmenu)

I do not know how to improve it. Please help.

Thanks in advance.
Paul

Posted: Mon 26. Sep 2005, 18:41
by Willinger
I'm not quite sure what your problem is. The site looks fine (I checked it in IE 5.5, Opera 8.5 and FF 1.5beta).
However, if I understand you at least halfway right, the whatever:hover script might help you out.
You can get it (along with a tutorial) here
http://www.xs4all.nl/~peterned/csshover.html

I the text underneath the pictures being displayed is what bothers you, a code like this

Code: Select all

<ul>
<li id="listentry_one"><a href="#"><span>text here not being displayed</span></a></li>
</ul>
along with the corresponding CSS

Code: Select all

ul li a { display: block; }
ul li a span { display:none; }
#listentry_one { background: url(path_to_picture) top left no-repeat; }
should help you. But you never know with IE.