Thank you so much Scott for taking a moment to impart your CSS wisdom  
and offer a resolution to my problem. You're the best!
________________
Hi, I'm JASON OGLE.
I   c r e a t e   s t u f f .
www.jasonogle.com


On Jun 20, 2007, at 12:03 PM, Scott Povlot wrote:

> 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;
> }
>
> Jason Ogle <[EMAIL PROTECTED]> wrote:
>
> What is the ideal way to layout the "Photos" and "Members Online"
> sections??

______________________________________________________________________
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