Hi, When you refer to 'subsites' do you mean sub-pages? Are the sub-pages displaying but at the same horizontal position as all the others?
If that is the case than it is possible that the margin/padding for ul has been removed. Try targeting your sitemap in the CSS and set sub-page items with margin to the left, so: -
#SITEMAPNAME ul li ul {
margin-left: 20px;
}
or something similar?
Hope this helps