I am trying to change the title of this template: forum_list, in ACP->appearance->templates->forum_list, I saw this line:
<xen:h1>{$xenOptions.boardTitle}</xen:h1>
1. I changed {$xenOptions.boardTitle} to mysite, and it works. But I think this is not good way to change it. So how could I change the value of this variable:$xenOptions.boardTitle]? I thought the value of $xenOptions.boardTitle is taken from this table: xf_option, but actually in this table, only 3 fields are set, option_id:boardTitle, can_backup :1, addon_id:XenForo, so it seems the value of this variable:$xenOptions.boardTitle is not stored in database.
2. for <xen:h1></xen:h1>,
a. I changed it to <xen:h2></xen:h2>, and it shows "Template syntax error.". So which html tag I can use in XenForo?
b. I changed it to <h3>{$xenOptions.boardTitle}</h3>, and in front page, it shows two "XenForo", one is in <h1>, one is in <h3>, source code:
so how does this happen?
c. if I want to add some css in<xen:h1></xen:h1>, eg. I want to change the color of title, using h1{font-color:red}, how could I do this?
<xen:h1>{$xenOptions.boardTitle}</xen:h1>
1. I changed {$xenOptions.boardTitle} to mysite, and it works. But I think this is not good way to change it. So how could I change the value of this variable:$xenOptions.boardTitle]? I thought the value of $xenOptions.boardTitle is taken from this table: xf_option, but actually in this table, only 3 fields are set, option_id:boardTitle, can_backup :1, addon_id:XenForo, so it seems the value of this variable:$xenOptions.boardTitle is not stored in database.
2. for <xen:h1></xen:h1>,
a. I changed it to <xen:h2></xen:h2>, and it shows "Template syntax error.". So which html tag I can use in XenForo?
b. I changed it to <h3>{$xenOptions.boardTitle}</h3>, and in front page, it shows two "XenForo", one is in <h1>, one is in <h3>, source code:
Code:
<div class="titleBar">
<h1>XenForo</h1>
</div>
<h3>XenForo</h3>
c. if I want to add some css in<xen:h1></xen:h1>, eg. I want to change the color of title, using h1{font-color:red}, how could I do this?