data-count div instead of table

This commit is contained in:
Serghey Rodin 2014-06-16 12:28:13 +03:00
commit b9dd6f4b73
28 changed files with 237 additions and 371 deletions

View file

@ -135,19 +135,13 @@
</table>
</form>
<table class="data-count">
<tr>
<td width="174px"></td>
<td>
<?php
if ( $i == 1) {
echo __('1 archive');
} else {
echo __('%s archives',$i);
}
?>
</td>
</tr>
</table>
<div class="data-count">
<?php
if ( $i == 1) {
echo __('1 archive');
} else {
echo __('%s archives',$i);
}
?>
</div>
</div>