diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-17 03:09:16 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-17 03:09:16 -0800 |
commit | 4c5788d05a0d27d5672ad85094809be8659d07c6 (patch) | |
tree | 3a44e5cb4d70da5644695deaec018a820846ef76 | |
parent | 1ca6e18e28e8f87e3c77e824034d186aff1686aa (diff) | |
download | pathery-4c5788d05a0d27d5672ad85094809be8659d07c6.tar.xz |
Memberlist cleanup. CSS tweeks.
-rw-r--r-- | css/stats.css | 3 | ||||
-rw-r--r-- | pages/memberlist.php | 20 |
2 files changed, 3 insertions, 20 deletions
diff --git a/css/stats.css b/css/stats.css index ab7ec77..c214726 100644 --- a/css/stats.css +++ b/css/stats.css @@ -36,6 +36,7 @@ .mapNavCon { height:150px; width:900px; + margin-bottom:10px; } .mapNavLeft { float:left; @@ -229,7 +230,7 @@ td, th { .memberName { float:left; padding: 5px 0px 3px 3px; - width:130px; + width:175px; overflow:hidden; text-overflow: ellipsis; white-space:nowrap; diff --git a/pages/memberlist.php b/pages/memberlist.php index c0962bf..b68c60b 100644 --- a/pages/memberlist.php +++ b/pages/memberlist.php @@ -4,35 +4,20 @@ htmlHeader( 'Members for Pathery.com',
array('scores', 'dateformat')
);
-
?>
-
<body>
<?php
-
topbar($Links);
-
-include_once ('./includes/sqlEmbedded.php');
-include_once ('./includes/datas.php');
-
-
?>
+
<script>
javascript:membersShowPage(1);
</script>
<?
-
-//Order by:
- //$order = "ORDER BY $c $o";
-
-//$data = getMembers(1, 10);
-
$json = json_encode($data);
-//onchange="savePref("speed", this.value)"
-//style='border:1px solid red;width: 500px; position:absolute;'
?>
<div class='wrapper'>
@@ -55,9 +40,6 @@ $json = json_encode($data); <br />
<?
-//echo $json;
-//print_r($data);
-
htmlfooter();
?>
|