XenForo Nav Bar

Hello,
I was wondering how I would remove the nav bar at the top of my forums page so it is only the sections showing. This is because I wish to embed it into my website with an iframe but it would look very strange with two navigation bars. All I need to show on the forum is the forum sections.

Does anyone know how I would go about doing this?

Kind Regards,
Dan.
 
That removes the whole nav bar.

Perhaps you could post a mock up of what you want instead of me trying to guess what you mean by "forum module".
 
I only want the highlighted red area showing.

The yellow highlighted area is optional.
tfvIOpp.png
 
The easiest thing to do then would probably be to edit the PAGE_CONTAINER template and remove these two sections near the bottom.

Code:
<header>
    <xen:include template="header" />
    <xen:edithint template="navigation" />
    <xen:edithint template="search_bar" />
</header>

Code:
<footer>
    <xen:include template="footer" />
</footer>

Untested but it should work.
 
Top Bottom