Index: l10n_community.css
===================================================================
RCS file: /cvs/drupal/contributions/modules/l10n_server/l10n_community/Attic/l10n_community.css,v
retrieving revision 1.1.2.10
diff -u -r1.1.2.10 l10n_community.css
--- l10n_community.css	11 Jul 2008 07:47:35 -0000	1.1.2.10
+++ l10n_community.css	12 Jan 2009 01:16:09 -0000
@@ -5,15 +5,15 @@
   margin-bottom: 2em;
   padding-bottom: 0.3em;
 }
-table#l10n-community-overview {
-  width: 45%;
+table.l10n-community-overview {
+  width: auto;
   margin-left: 1em;
   float: left;
 }
-table#l10n-community-overview td {
+table.l10n-community-overview td {
   vertical-align: middle;
 }
-div.admin table#l10n-community-overview {
+div.admin table.l10n-community-overview {
   width: auto;
 }
 div.admin .form-submit {
@@ -24,10 +24,10 @@
 }
 
 /* Overview navigation tables for projects and languages */
-#l10n-community-overview td, #l10n-community-overview thead th {
+.l10n-community-overview td, .l10n-community-overview thead th {
   text-align: center;
 }
-#l10n-community-overview td.rowhead, #l10n-community-overview thead th.rowhead {
+.l10n-community-overview td.rowhead, .l10n-community-overview thead th.rowhead {
   text-align: left;
 }
 .l10n-community-progress {
Index: pages.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/l10n_server/l10n_community/Attic/pages.inc,v
retrieving revision 1.1.2.20.2.5
diff -u -r1.1.2.20.2.5 pages.inc
--- pages.inc	29 Dec 2008 16:02:21 -0000	1.1.2.20.2.5
+++ pages.inc	12 Jan 2009 18:52:49 -0000
@@ -89,7 +89,7 @@
     'l10n_community_table',
     theme('l10n_community_progress_headers', t('Project')),
     $table,
-    array('id' => 'l10n-community-overview')
+    array('class' => 'l10n-community-overview')
   );
   $output .= theme('pager', NULL, $pager_setting, 0);
   return $output;
@@ -253,7 +253,7 @@
     'table',
     theme('l10n_community_progress_headers', t('Language')),
     $table,
-    array('id' => 'l10n-community-overview')
+    array('class' => 'l10n-community-overview')
   ) .'<div class="clearing"></div>';
   $output .=  theme('admin_block', $block);
 
@@ -403,12 +403,12 @@
  */
 function theme_l10n_community_table($header, $table) {
   if (($row_count = count($table)) > 1) {
-    $output = theme('table', $header, array_slice($table, 0, ceil($row_count/2)), array('id' => 'l10n-community-overview'));
-    $output .= theme('table', $header, array_slice($table, ceil($row_count/2)), array('id' => 'l10n-community-overview'));
+    $output = theme('table', $header, array_slice($table, 0, ceil($row_count/2)), array('class' => 'l10n-community-overview'));
+    $output .= theme('table', $header, array_slice($table, ceil($row_count/2)), array('class' => 'l10n-community-overview'));
     return $output;
   }
   else {
-    return theme('table', $header, $table, array('id' => 'l10n-community-overview'));
+    return theme('table', $header, $table, array('class' => 'l10n-community-overview'));
   }
 }
 
Index: welcome.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/l10n_server/l10n_community/Attic/welcome.inc,v
retrieving revision 1.1.2.7.2.3
diff -u -r1.1.2.7.2.3 welcome.inc
--- welcome.inc	29 Dec 2008 16:02:22 -0000	1.1.2.7.2.3
+++ welcome.inc	11 Jan 2009 20:56:03 -0000
@@ -61,7 +61,7 @@
   $block = array(
     'title' => t('Contribute'),
     'description' => t('Suggest, translate, review'),
-    'content' => '<dl class="admin-list">'. $content .'</dl>'
+    'content' => '<div class="admin-list">'. $content .'</div>'
   );
   $output .= str_replace('class="admin-panel"', 'class="admin-panel admin-panel-contribute"', theme('admin_block', $block));
 

