Yes, actually, the code which I first posted is from the tutorial, my
real production code looks like this:

<div class="submenu_center">
          <ul class="submenu">
             % for item in c.sublinks:
                <li><a href="${item}/" class="level_submenu">${item}</
a></li>
             % endfor
          </ul>
        </div>


Thank you all for the tips

On May 16, 4:20 pm, Alexandre CONRAD <[EMAIL PROTECTED]> wrote:
> voltron wrote:
> > nevermind
>
> > <table>
> >         % for item in c.links:
> >             <tr>
> >                <td>${item}</td>
> >             </tr>
> >         % endfor
> >       </table>
>
> Nothing to do about your initial problem, but by reading your HTML, I
> can only suggest that you'd probably prefer using HTML unordered lists
> <ul>, list items <li> and format the output with CSS instead of using
> tables.
>
> <ul>
>    % for item in c.links:
>      <li>${item}</li>
>    % endfor
> </ul>
>
> I like to point this link once in a while:
>
>    http://hotdesign.com/seybold/everything.html
>
> Regards,
> --
> Alexandre CONRAD


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to