diff options
Diffstat (limited to 'modules/rudi/views/view.ranks.php')
-rw-r--r-- | modules/rudi/views/view.ranks.php | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/modules/rudi/views/view.ranks.php b/modules/rudi/views/view.ranks.php index 2bb1823..4792049 100644 --- a/modules/rudi/views/view.ranks.php +++ b/modules/rudi/views/view.ranks.php @@ -1,13 +1,11 @@ -<?php define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?> +<?php //define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?> <html> <head> <title>Awards and Medals</title> <style type="text/css"> -p {color: white; } -body {background-color: black; } -th.header { +/*th.header { width:175px; background:#333; } @@ -15,21 +13,21 @@ th.header { td.rudi { text-align: center; vertical-align: middle; -} +} */ </style> </head> <body> - <table align="center" style="width: 100%;"> + <table class="rudi" align="center" style="width: 100%;"> <tr> - <th scope="col" class="header">Image</th> - <th scope="col" class="header">Rank</th> + <th scope="col">Image</th> + <th scope="col">Rank</th> </tr> <?php foreach($this->ranks as $rank): ?> <tr> - <td align='center' class="rudi"><img src="<?php echo "{$this->images_path}/ranks/small/{$rank->image}"; ?>"></img> </td> - <td align='center' class="rudi"><?php echo $rank->longname; ?> </td> + <td><img src="<?php echo "modules/rudi/images/ranks/small/{$rank->image}"; ?>" /> </td> + <td><?php echo $rank->longname; ?> </td> </tr> <?php endforeach; ?> |