将博客标题拆分为两部分时出现的问题



我正试图将博客标题分为两部分。我在谷歌上搜索了一下,找到了一些代码。我在模板中添加了以下代码:

<div id='header'>
<b:section class='blognames' id='blognames' maxwidgets='1' showaddelement='yes'>
  <b:widget id='Header1' locked='true' title='all trick world (Header)' type='header'>
  ......................................
</b:section>

在这之后,我添加了这两行:

<b:section id='header-right' showaddelement='yes'/>
<div style='clear: both;'/>

现在,在]]b:skin之前要写什么代码,以便将标题分为两部分??

我为博客做这件事的时候已经有一段时间了,但我记得你所需要做的就是更改maxwidget属性的值,比如这样:

<b:section class='header' id='header' maxwidgets='2' showaddelement='yes'>

最新更新