Need help - BoardTitle

Anh3Hung

New member
Hi every one,

Please show me how to hide the BoardTitle and the Top Breadcrumb in the Homepage (just home page).

thanks in advanced.
 
You really aren't making any sense.

Wrapping the code in the appropriate template with <xen:comment>code here</xen:comment> is the same as adding what you provided to EXTRA.css.
Adding display: none; will cause the HTML to still be sent to the user. It will look "removed" on their side but they will still be able to see the HTML.

Adding <xen:comment> will cause the HTML to be not sent to the user at all.
 
From the FAQ:

How can I remove the title from the forum home page?
Add one of the following to the EXTRA.css template:
Code:
.forum_list .titleBar {
display: none;
}
or
Code:
.forum_list .titleBar h1 {
font-size: 0px;
}
Note that this may have an impact on SEO. Refer to the discussion thread in the forum for more information.

http://xenforo.com/community/threads/frequently-asked-questions.5183/#post-181037


How do I comment in a template to remove existing code or add notes?
Code:
<xen:comment>
    This content is commented out
</xen:comment>
Note that using <xen:comment> will prevent the content from being output (rendered) altogether, so it won't show even when viewing the page source.

http://xenforo.com/community/threads/frequently-asked-questions.5183/#post-181112
 
Top Bottom