Hi John,
I just emailed you back the skin.
The things I had to do are
-
edit the layout.master so the skeleton markup matches what you see in index.html. I didn't even use Firebug I just viewed the source to compare to the layout.master. Firebug is only needed really when some javascript is changing the markup after the page loads.
-
the main thing I think that affected the menu was that this design has an extra div surrounding the menu with <div class="art-nav-center"> but the menu is configured by default to render a div with <div class="art-nav-outer">, so what I did was put the <div class="art-nav-outer"> directly in layout.master surrounding the menu and then I changed a setting in theme.skin from this:
<portal:mojoMenu runat="server" SkinID="SiteMenu"
RenderContainerCssClass="true"
ContainerCssClass="art-nav-outer"
RenderImages="false"
UseMenuTooltipForCustomCss="true"
RenderCustomClassOnLi="true"
RenderCustomClassOnAnchor="false"
RenderLiSelectedCss="false"
RenderAnchorSelectedCss="true"
UlCssClass="art-hmenu"
LiCssClassWithChildren=""
LiCssClassWithoutChildren=""
LiSelectedCssClassWithChildren=""
LiSelectedCssClassWithoutChildren=""
LiChildSelectedCssClass=""
LiParentSelectedCssClass=""
AnchorCssClass=""
AnchorSelectedCssClassWithChildren="active"
AnchorSelectedCssClassWithoutChildren="active"
AnchorChildSelectedCssClass=""
AnchorParentSelectedCssClass=""
InnerSpanMode="Artisteer"
/>
to this
<portal:mojoMenu runat="server" SkinID="SiteMenu"
RenderContainerCssClass="true"
ContainerCssClass="art-nav-center"
RenderImages="false"
UseMenuTooltipForCustomCss="true"
RenderCustomClassOnLi="true"
RenderCustomClassOnAnchor="false"
RenderLiSelectedCss="false"
RenderAnchorSelectedCss="true"
UlCssClass="art-hmenu"
LiCssClassWithChildren=""
LiCssClassWithoutChildren=""
LiSelectedCssClassWithChildren=""
LiSelectedCssClassWithoutChildren=""
LiChildSelectedCssClass=""
LiParentSelectedCssClass=""
AnchorCssClass=""
AnchorSelectedCssClassWithChildren="active"
AnchorSelectedCssClassWithoutChildren="active"
AnchorChildSelectedCssClass=""
AnchorParentSelectedCssClass=""
InnerSpanMode="Artisteer"
/>
Other than that I commented some stuff out in style-artisteeroverrides.css and made one small change in stylemojo.css because the top nav links were white on a white background, I just copied the color from one of the heading to make them green.
Of course all the stuff in the middle of the page is not really part of the design but part of the content so those parts don't really go into the skin even though it looks like you've put real example content in your design. You would need to create that using mojoPortal features like the html feature.
Hope that helps,
Joe