| Client list in a scrolling box
|
SanDiegoPaul

msg:4116971 | 4:06 pm on Apr 16, 2010 (gmt 0) | I'm trying to do a list of clients' logos in a scrolling text box. Let's say you have the center of a web page, between header & footer. I want to have a box with a scroll bar, filled with a dozen or so logos of customers. How do I accomplish this, and can they be made links too? Thanks for any suggestions.
|
kaled

msg:4117173 | 1:31 am on Apr 17, 2010 (gmt 0) | Something like this should work... CSS #clientlist {float:left; overflow:auto; height:100px; width:100px} HTML <div id="clientlist"> <table> <tr><td><img></td> <td>text</td></tr> <tr><td><img></td> <td>text</td></tr> ... </table> </div> Kaled.
|
|
|