h1を除いて、div id="primary"の内容にclass="box"のセクションを追加したいです。私のhtmlは以下です。
<div id="primary">
<h1 class="page-title">Search Results for: dffd</h1>
<h2>Nothing Found</h2>
<p>Sorry, but nothing matched your search criteria. Please try again with some different keywords.</p>
</div> <!--end #primary -->
だから私が達成したいのは
<div id="primary">
<h1 class="page-title">Search Results for: dffd</h1>
<section class="box">
<h2>Nothing Found</h2>
<p>Sorry, but nothing matched your search criteria. Please try again with some different keywords.</p>
</section>
</div> <!--end #primary -->
編集:間違いを犯しました。セクションにh1を入れたくないので、質問を修正しました