I'm afraid you've got the wrong mailing list... this mailing list is for
GitHub.
Tekkub
Github Tech Support
http://support.github.com/
Join us on IRC: #github on freenode.net
Discussion group: [email protected]
On Thu, Jul 23, 2009 at 12:59 AM, charon <[email protected]> wrote:
>
> I have a problem with Cufon in an css dropdown-menue (see code below).
> the replaces text will not be shown by :hover in IE8. In IE 7 an all
> other browser it is fine, without cufon the menu works.
> the problem is somewhere in case of (css) visiblity hidden/visible and
> (css) :hover.
>
> this is the basic code with the IE8 problem:
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://
> www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
> <html xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
> <head>
> <script type="text/javascript" src="js/cufon/cufon-yui.js"></script>
> <script src="js/cufon/DIN-CondBold_500.font.js" type="text/
> javascript"></script>
> <script type="text/javascript">
> Cufon.replace ('a');
> </script>
> <style type="text/css">
>
> #nav ul li {
> float:left;
> width:100px;
> display: block
> }
>
> #nav ul li ul li{
> visibility: hidden;
> }
>
> #nav ul li:hover ul li {
> visibility: visible;
> display: block;
> }
> </style>
>
> </head>
> <body>
>
> <div id="nav">
> <ul>
> <li class="first"><a href="#">Lorem Ipsum</a></li>
> <li><a href="#">Lorem Ipsum</a></li>
> <li><a class="active" href="#">Lorem Ipsum</a>
> <ul>
> <li><a class="active" href="#">Lorem
> Ipsum</a></li>
> <li><a href="#">Lorem Ipsum</a></li>
> </ul>
> </li>
> <li><a href="#">Lorem Ipsum</a></li>
> </ul>
> </div>
>
> <script type="text/javascript"> Cufon.now(); </script>
> </body>
> </html>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GitHub" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/github?hl=en
-~----------~----~----~----~------~----~------~--~---