ok, I have managed to find a solution using CSS.
Entering this code on the DNN creative site removes the home page from the menu:
ul li #HouseMenuNavItem53 {
display: none;
}
All you have to do is look in the source code for the page and identify the ID of the home page, enter that ID number in here: #HouseMenuNavItem53
It may be slightly different dependant on which version of the house menu you are using, this is for version 1.3, which has the source code of:
< ul id="HouseMenuNav0" >
< li id="HouseMenuNavItem53" >< a id="HouseMenuNavLink53" href="http://www.dnncreative.com/Home/tab...fault.aspx" title="DotNetNuke with DNN Creative Magazine, Web Design, Tutorials, Skinning, Module Reviews, Videos" tabindex="1" >Home< /a >< /li >
So, as you can see we have to target the HTML elements that surround the ID. - so you may have to change this for version 1.4 - just check on the HTML elements and add them to the CSS
Hope this helps,