CSS guru wanted

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
Paal
Posts: 204
Joined: Wed 6. Oct 2004, 19:54
Location: Budapest, Hungary
Contact:

CSS guru wanted

Post 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
Willinger
Posts: 6
Joined: Sun 25. Sep 2005, 17:22

Post 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.
Post Reply