Actually HouseMenu sets an id tag for current link.
So just set currentlink css and your set.
For example I have
CssElementId = "HouseMenuNav"
in my CSS I have
#HouseMenuNavCurrentLink
{
insert styling
}
That will style the currently selected menu item. NOTE: It will not style the Home tab/page.
You have to do #HouseMenuNavItemHome for that, this is a bit of a problem though cause the styling remains the same on the Home tab as its a set id. To work around this create a second html file for Home page, and set the CssElement to HouseMenuNavHome or whatever naming convention you want, then set #HouseMenuNavHomeItemHome style. Then just set your home tab / page to have the Home version of your skin. This way when our users are on Home it will display the selected styling you want, but when they travel to the other tabs/pages the HouseMenuNavCurrentLink will take over.