Skip to content

Commit

Permalink
Removing <nav> tag as it seems broke the layout on some pages
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Sep 3, 2011
1 parent 0e83a85 commit 068127f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion catalog/includes/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>

<div class="grid_24 ui-widget infoBoxContainer">
<nav><div class="ui-widget-header infoBoxHeading"><?php echo '&nbsp;&nbsp;' . $breadcrumb->trail(' &raquo; '); ?></div></nav>
<div class="ui-widget-header infoBoxHeading"><?php echo '&nbsp;&nbsp;' . $breadcrumb->trail(' &raquo; '); ?></div>
</div>

<?php
Expand Down
4 changes: 1 addition & 3 deletions catalog/includes/modules/boxes/bm_categories.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,8 @@ function getData() {

$data = '<div class="ui-widget infoBoxContainer">' .
' <div class="ui-widget-header infoBoxHeading">' . MODULE_BOXES_CATEGORIES_BOX_TITLE . '</div>' .
'<nav>' .
' <div class="ui-widget-content infoBoxContents">' . $categories_string . '</div>' .
'</div>' .
'</nav>';
'</div>' ;

return $data;
}
Expand Down

0 comments on commit 068127f

Please sign in to comment.