Hello,
I've got the expanadable menu (PHP) installed on a test machine and something aint quite right:
Template.php
Added <link rel="stylesheet" type="text/css" href="/udm-resources/menu.css" media="screen, projection" /> =======just copied the line above
<ul id="udm" class="udm">
<li class="onclick"><a class="nohref"> North Scotland</a>
<ul>
<li class="onclick"><ahref="http://aberdeen.dnsalias.org">Aberdeen</a></li>
<li class="onclick"><a href="http://dundee.dnsalias.org">Dundee</a></li>
</ul>
</li>
My css style sheet:
/* expanding menu styling */
#udm ul {
margin-left:0 !important;
margin-top:1px !important;
}
/* no rollover on nohref links */
#udm a.nohref {
background-color:transparent !important;
border-color:#f8fbd0 !important;
color:#060 !important;
}
/* no rollover on nohref links */
#udm a.nohref {
background-color:transparent !important;
border-color:#f8fbd0 !important;
color:#060 !important;
}
/* give all anchors a hand cursor */
#udm a {
cursor
ointer !important;
cursor:hand !important;
}
I think the nohref style is in the wrong place or my menu.css aint right, can anyone help me?