Skip to content

Commit

Permalink
Markup Validator Fix for comment page navigation
Browse files Browse the repository at this point in the history
Markup Validator did not like <p> tag with class in it. Switched to div.
  • Loading branch information
eSilverStrike committed Jan 9, 2017
1 parent 6a09f0f commit 1d535e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions public_html/layout/denim/comment/startcomment.thtml
Expand Up @@ -4,8 +4,10 @@
<div id="comments">
{commentbar}
{comments}

<p class="pagenav">{pagenav}</p>

{!if pagenav}
<div class="uk-margin-top">{pagenav}</div>
{!endif}
</div>
{commenteditor}
</aside>
Expand Down
4 changes: 3 additions & 1 deletion public_html/layout/modern_curve/comment/startcomment.thtml
Expand Up @@ -5,7 +5,9 @@
{commentbar}
{comments}

<p class="pagenav">{pagenav}</p>
{!if pagenav}
<div class="pagenav">{pagenav}</div>
{!endif}
</div>
{commenteditor}
</div>
Expand Down

0 comments on commit 1d535e8

Please sign in to comment.