This patch fix this issue in the table headers: CategoryName VotesDescription
centering Name and Description columns headers, fix the issue. Best regards.
From 22d868bbf4369f851961424dbb90209117ce4aab Mon Sep 17 00:00:00 2001 From: Manuel Tortosa <[email protected]> Date: Wed, 29 Sep 2010 14:38:02 +0200 Subject: [PATCH 6/6] Fix columns headers visibility --- web/template/pkg_search_results.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/template/pkg_search_results.php b/web/template/pkg_search_results.php index bb898df..ab49c6b 100644 --- a/web/template/pkg_search_results.php +++ b/web/template/pkg_search_results.php @@ -21,7 +21,7 @@ <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'> <a href='?<?php print mkurl('SB=c&SO=' . $SO_next) ?>'><?php print __("Category") ?></a> </span></th> - <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'> + <th style='border-bottom: #666 1px solid; vertical-align: bottom; text-align: center;'><span class='f2'> <a href='?<?php print mkurl('SB=n&SO=' . $SO_next) ?>'><?php print __("Name") ?></a> </span></th> <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'> @@ -36,7 +36,7 @@ <a href='?<?php print mkurl('SB=o&SO=' . $SO_next) ?>'><?php print __("Notify") ?></a> </span></th> <?php endif; ?> - <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'><?php print __("Description") ?></span></th> + <th style='border-bottom: #666 1px solid; vertical-align: bottom; text-align: center;'><span class='f2'><?php print __("Description") ?></span></th> <th style='border-bottom: #666 1px solid; vertical-align: bottom'><span class='f2'> <a href='?<?php print mkurl('SB=m&SO=' . $SO_next) ?>'><?php print __("Maintainer") ?></a> </span></th> -- 1.7.1
