Hi All,
I am using the most recent version of superfish and jquery. I am
trying to provide an alternative CSS style to the <a href tags as they
are currently the same style as for links within the rest of the site.
I tried the following by providing an <a id="super" where our menu
gets generated and in the superfish CSS adding the following...
.nav a#super {
display:block;
padding: 5px 1px 5px 3px;
text-decoration:none;
/* width:7.45em; */
color: #000000;
font: normal 12px Arial, Helvetica, sans-serif;
text-decoration: none;
}
.nav li ul {
top:-999em;
position:absolute;
width:9.45em;
}
.nav li:hover,
.nav li.sfHover,
.nav a#super:focus, .nav a#super:hover, .nav a#super:active {
background:#ececec;
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-wieght: normal;
text-decoration: none;
}
it kinda works, but falls over when I hover over a menu element. Does
this make any sense to anyone? and does anybody have any ideas. Oli