Jason,

Both Photos and Members Online are simple lists.  A list of images and a list 
of users.  So, use a unordered list (<ul>).  You can float the list items to 
make a multi-column display.

For example:

<h2>Members Online</h2>
<ul id="online">
    <li>steve0727</li>
    <li>whatsis</li>
    <li>audiosl_99</li>
...
</ul>




CSS:
ul#online {

    list-style-image:none;
    margin: 0;
    padding: 0;
}


ul#online li {
    float:left;
    width:20em;
}


Regards,

Scott Povlot

Jason Ogle <[EMAIL PROTECTED]> wrote:
What is the ideal way to layout the "Photos" and "Members Online"  
sections??



 
---------------------------------
 Get your own web address.
 Have a HUGE year through Yahoo! Small Business.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to