top



Is any one who can help me to make the Statistics like this example i have made in PS!

How can i make the Statistics like this Statis10

It's basic html... use a table and put everything right

Lol if i know it how to do it then i didn't need to ask here for help so can any one make the html and css. Smile

I was almost about to release my code for statistics xD but then i realized that was not what you wanted
How can i make the Statistics like this Stats

I'll try to create a code later on, it's 2:30am and im already f*cked up...

Create a div that float left, which contains to subdiv. Then create a div that float right, and create a horizontal line (


) for separate. Smile

Could i please get a code for it.

Code:
<div id="stats_main">
   <div id="stats_left">
      <div id="stats_left_first">
{TOTAL_USERS_ONLINE}
<br/><br/>
{LOGGED_IN_USER_LIST}
      </div>
      <div id="stats_left_second">
{LEGEND} : {GROUP_LEGEND}
<br/><br/>
<a href="/viewonline">Who is online</a> | <a href="/?mode=delete_cookies">Delete all board cookies</a> | <a href="#">Return to Top</a>
      </div>
   </div>
   <div id="stats_right">
{TOTAL_POSTS}
<hr/>
{TOTAL_USERS}
<hr/>
{NEWEST_USER}
<hr/>
{RECORD_USERS}
   </div>
</div>
And...
Code:
#stats_main {
border : 1px solid #000000;
background : #FFFFFF;
width : 1000px;
overflow : hidden;
}
#stats_left {
float : left;
width : 730px;
}
#stats_left_first {
border : 1px solid #000000;
border-left : 0;
border-top : 0;
padding : 10px;
}
#stats_left_second {
border : 0;
border-right : 1px solid #000000;
padding : 10px;
}
#stats_right {
float : right;
width : 230px;
padding : 10px;
}

Thanks a lot this is solved now! Smile

Solved and locked