-2

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

  <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}
4

1 回答 1

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}
于 2014-12-02T00:15:57.097 回答