Hi,<br><br>  I&#39;m learning smalltalk and seaside and I need your help.<br><br>  I&#39;m writing a web application in order to manage comix books.<br>I got a working code so far and now I would like to get a good looking application.<br>
I have a list of comix (shown by their author&#39;s name) and a comix (like defined in my model, but I will, after that, show all info in place of that) just behind the list.<br><br>What I would like is to have the list on the left and the comix details on the right but at same level.<br>
<br>So far, I wrote a &#39;style&#39; methode like that :<br><br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">style<br>

    ^ &#39;<br>

    .left { text-align: left; }<br>

    .right { text-align: right}<br>

    &#39;<br></blockquote><br><br>and in my &#39;renderContentOn&#39;, I have :<br><br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">    html div<br>


        class: &#39;left&#39;;<br>

        with: [<br>

            &quot;rendering the list&quot;<br>

        ]<br></blockquote><div>... <br></div><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">    html div<br>

        class: &#39;right&#39;;<br>

        with: [<br>

            &quot;rendering the comix details&quot;<br>

        ]<br></blockquote><div><br>If you want, you can take a look at my application at <a href="http://mdelache.seasidehosting.st/seaside/BDTest">http://mdelache.seasidehosting.st/seaside/BDTest</a><br>but it&#39;s a little bit lagging</div>