jezzykiss wrote:Hi
Iam trying to customize the header part of YAF
when we run in browser the first is
Welcome Guest Search | Active Topics | Log In | Register
and second you
Forum>TestForum
I want this second to be moved separately and place whereever I want.
May I know which code part does this ?
I'm not sure if you have received an answer on this yet.
The header is in YAF.Controls > Header.cs
The breadcrumb is in YAF.Controls > PageLinks.cs
It looks like you can use the PageLink Control.
Code:
<YAF:PageLinks runat="server" ID="PageLinks" />
However, you will have to populate it in the code behind.
As an example, look in the pages folder on the root of the web application at the forum.ascx and forum.ascx.cs files.
Hope that helps.