2010-12-22, 00:17:52
I've uploaded the latest version to the Extend repository as it looks good enough for public use.
http://get-simple.info/extend/plugin/client-files/66/
This version adds a change password link for the client areas and has moved all formatting of the front end table out of the code. Simply style it in your CSS.
The css I use in the demo http://testbed.cartocopia.com/testing/ is set up to match the default template, and can be dropped in your css file:
-Rob A>
http://get-simple.info/extend/plugin/client-files/66/
This version adds a change password link for the client areas and has moved all formatting of the front end table out of the code. Simply style it in your CSS.
The css I use in the demo http://testbed.cartocopia.com/testing/ is set up to match the default template, and can be dropped in your css file:
Code:
/* CLIENT FILES TABLE */
#cf_table {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
width:100%;
border-collapse:collapse;
}
#cf_table caption {
font-weight: bolder;
}
#cf_table td, #cf_table th {
font-size:1em;
border:1px solid #cccccc;
padding:3px 7px 2px 7px;
}
#cf_table th {
font-size:1.1em;
text-align:left;
padding-top:5px;
padding-bottom:4px;
background-color:#009865;
color:#ffffff;
}
#cf_table tr.alt td {
color:#000000;
background-color:#f9f9f9;
}
-Rob A>