I need it done for my: /category/product/ and /category/product/sub- product pages. I added these via the Satchmo Site Administration. So I need to ovewrite my satchmo/store/templates/shop/base.html file? (I've copied the base.html file over so I do not edit the original).
I was hoping I could simply do it with the style.css file without editing (or creating) any type of Django template code..maybe about wrong about that though. :) thanks for the reply back, j On Dec 3, 4:22 pm, lzantal <[email protected]> wrote: > Hi > On Dec 3, 1:08 pm, jc <[email protected]> wrote:> I see the following > code in my base.html so I'm almost positive this > > is where I'd go if I was to code it in. Anyone know the code that I > > would put in here to make the product align across the page instead of > > vertically? > > If you mean in the category view then you need to overwrite the > templates/product/category.html template. > """ > <u class="product-category"l> > {% for product in products %} > <li> product info here </li> > {% endfor %} > </ul> > """ > Style product-category class to float the <li>, That's all you need. > > lzantal > > > > > > > > > <div id="content"> > > {% block content %} > > {% endblock %} > > </div> > > > On Dec 3, 3:59 pm, jc <[email protected]> wrote: > > > > How do I format my products across the category page instead of them > > > going under each other, like this website > > > does.http://playingfair.com.au/category/children-s-clothes/ > > > > Currently, my products are going vertically down the page, as though > > > there is a <br /> after each product is created. > > > > Where do I look at the fix this? Can I do this in the Site > > > Administration Store or do I need to code that behavior in to the > > > site. > > > > Thanks for the help in the past, > > > J -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
