从徽标中删除h1 take

时间:2014-12-02 00:13:09

标签: html heading

我试图从网站上的徽标和网站标题中删除标题标记,但不知道如何继续。

  <header id="header" class="show-on-scroll" data-offset-el=".index-section" data-offset-behavior="bottom" role="banner">
    <div class="header-inner">
      {.section website}<div id="{.if logoImageUrl}logoWrapper{.or}siteTitleWrapper{.end}" class="wrapper" data-content-field="site-title">
        {.section logoImageUrl}
          <h1 id="logoImage"><a href="/"><img src="{logoImageUrl}?format=1500w" alt="{siteTitle}" /></a></h1>
        {.or}
          <h1 id="siteTitle" class="site-title"><a href="/">{siteTitle}</a></h1>
        {.end}

1 个答案:

答案 0 :(得分:0)

从标记中更改h1标记。

<header id="header" class="show-on-scroll" data-offset-el=".index-section" data-offset-behavior="bottom" role="banner">
    <div class="header-inner">
      {.section website}<div id="{.if logoImageUrl}logoWrapper{.or}siteTitleWrapper{.end}" class="wrapper" data-content-field="site-title">
        {.section logoImageUrl}
          <div id="logoImage"><a href="/"><img src="{logoImageUrl}?format=1500w" alt="{siteTitle}" /></a></div>
        {.or}
          <div id="siteTitle" class="site-title"><a href="/">{siteTitle}</a></div>
        {.end}