Fix responsive tables in events page

This commit is contained in:
Brian Miyaji
2014-03-21 14:52:47 +11:00
parent f7d6057ed9
commit 198453b842
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ if ( !function_exists( 'sportspress_event_details' ) ) {
$output = '<h3>' . __( 'Details', 'sportspress' ) . '</h3>';
$output .= '<div class="sp-table-wrapper">' .
'<table class="sp-event-details sp-data-table sp-responsive-table"><tbody>';
'<table class="sp-event-details sp-data-table"><tbody>';
$i = 0;

View File

@@ -26,7 +26,7 @@ if ( !function_exists( 'sportspress_event_results' ) ) {
$table_rows .= '<tr class="' . ( $i % 2 == 0 ? 'odd' : 'even' ) . '">';
$table_rows .= '<td class="column_name">' . get_the_title( $team_id ) . '</td>';
$table_rows .= '<td class="data-name">' . get_the_title( $team_id ) . '</td>';
foreach( $result_labels as $key => $label ):
if ( $key == 'name' )