Hi, I notice that your site is using the House Menu module and you've managed to show the tab active status. Can you please tell me how to do that? I'm struggling desperately since my knowledge of CSS skinning is awful.
Here's the code in my skin's skin.ascx :
<div id="HouseMenuH">
<dnn:housemenu mode="S" orientation="H" isrecursive="false" showadmin="true" scope="-1" id="dnnHOUSEMENU" runat="server"></dnn:housemenu>
</div>
And here's the House Menu configuration in skin.css :
#HouseMenuH ul
{
padding: 3px 0;
padding-top: 6px;
margin: 0 1 1 0;
border-bottom: 1px solid #778;
background-image: url('menubkg.gif');
background-repeat: repeat-x
}
#HouseMenuH li
{
list-style: none;
margin: 0;
display: inline;
}
#HouseMenuH li a
{
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #778;
border-bottom: none;
background: #DEE;
text-decoration: none;
}
#HouseMenuH li a:link { color: #667; }
#HouseMenuH li a:visited { color: #667; }
#HouseMenuH li a:hover
{
background: white;
border-bottom: 1px solid white;
}
#houseMenuH li a:active
{
background: white;
border-bottom: 1px solid white;
}
Thankyou very much,
Duc |