[thelist] asked to rebuild an eCommerce category/subcategory/product structure

ben morrison morrison.ben at gmail.com
Wed Sep 23 03:58:25 CDT 2009


On Tue, Sep 22, 2009 at 6:09 PM, Bob Meetin <bobm at dottedi.biz> wrote:
> anyhow this works for the horizontal scroller.
>
> <style type="text/css">
> #container { overflow:auto; width:600px; }
> .float { width: 1800px; }
> span { float: left; }
> </style>
>
> <div id="container">
>  <div class="float">
>    <span><img src="images/blue_ferrari.jpg"><p>whatever</p></span>
>    <span><img src="images/red_ferrari.jpg"><p>whatever</p></span>
>    <span><img src="images/black_ferrari.jpg"><p>whatever</p></span>
>  </div>
> </div>

Sure, but you should change that to a semantic structure, not sure of
product so OL or UL

<div id="container">
 <ul>
   <li><img src="images/blue_ferrari.jpg"><p>whatever</p></li>
   <li><img src="images/red_ferrari.jpg"><p>whatever</p></li>
   <li><img src="images/black_ferrari.jpg"><p>whatever</p></li>
 </ul>
</div>

ben
-- 
Ben Morrison



More information about the thelist mailing list