Thanks for the response and I completely agree with you that it is not Seaside&#39;s place to teach HTML.&nbsp; What I am looking for is the Smalltalk expressions used to create the HTML, i.e. the &quot;receiver, message selector and arguments&quot;.&nbsp; For example, to display a url in HTML you would type:<font size="2"><br>
</font><pre style="font-family: arial,helvetica,sans-serif;"><font size="2"><span style="font-family: courier new,monospace;">&lt;a href=&quot;<a href="http://www.w3schools.com/">http://www.w3schools.com/</a>&quot;&gt;Visit W3Schools!&lt;/a&gt;</span><br>
<br>but in Smalltalk you would type the following in a &quot;rendering&quot; method:<br><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">html anchor url: &#39;<a href="http://www.3schools.com">www.3schools.com</a>&#39;; with: &#39;Visit W3Schools!&#39;.</span><br>
<br>Now, without using CSS, you are able to change font, font-size, style etc. of the link above, but how is it done using Smalltalk expressions?<br>How, or where can I find information that will give me valid </font>&quot;receiver, message selector and arguments&quot;?  I assume that the &quot;receiver&quot; will always<br>
be &quot;html&quot;.<br><br>I hope that clarifies my question(s)?  If it is a matter of just working your way through class libraries and comments (which ones?) then that<br>is what I will do.  Just feels like there must be an easier way for finding the information. <br>
</pre>Thanks again in advance<br><br><br><div class="gmail_quote">2008/11/25 David Mitchell <span dir="ltr">&lt;<a href="mailto:david.mitchell@gmail.com">david.mitchell@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I&#39;m definitely not a CSS expert. But I&#39;ve worked with frameworks that<br>
generate HTML before.<br>
<br>
I didn&#39;t have any trouble using our companies CSS into the apps I was<br>
generating with Seaside. Just looked at the HTML and where they wanted<br>
the div tags and then made sure that I generated to match.<br>
<div><div></div><div class="Wj3C7c"><br>
On Tue, Nov 25, 2008 at 1:30 PM, John M &lt;<a href="mailto:p3anoman@gmail.com">p3anoman@gmail.com</a>&gt; wrote:<br>
&gt; FWIW I was/am still in the same boat and the w3schools site was a valuable<br>
&gt; refernce on what attributes are valid for what tags etc. Its really not<br>
&gt; Seaside&#39;s purpose to teach html, only to give a great tool for creating it<br>
&gt; in a highly reusable fashion.<br>
&gt;<br>
&gt; Firebug for Firefox is an extremely useful tool for letting you see your<br>
&gt; html as rendered and showing you where your div sections end up laying out<br>
&gt; etc. I could not get a handle on CSS until i started using it. (Firebug has<br>
&gt; some other really useful features that you may need when you get to<br>
&gt; working with javascript for example).<br>
&gt;<br>
&gt; Hope this helps<br>
&gt; John<br>
&gt;<br>
&gt; On Mon, Nov 24, 2008 at 6:04 PM, r00t uk &lt;<a href="mailto:r00tuk@gmail.com">r00tuk@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi<br>
&gt;&gt;<br>
&gt;&gt; I am hoping to get some advice on how to proceed with HTML &amp; CSS in<br>
&gt;&gt; Squeak/Seaside as I am finding it a bit of a struggle to do the simple<br>
&gt;&gt; stuff. &nbsp;I do not have any prior experience with web programming, but I have<br>
&gt;&gt; been going through the <a href="http://w3schools.com" target="_blank">w3schools.com</a> tutorials for guidance on creating the<br>
&gt;&gt; #style method. &nbsp;Its the rendering side of things which are a bit of a<br>
&gt;&gt; struggle as all of the html is generated by Seaside.<br>
&gt;&gt;<br>
&gt;&gt; Are there any tutorials on web programming with Seaside? &nbsp;I have been<br>
&gt;&gt; spending time getting to know Smalltalk and a bit of Seaside, but up until<br>
&gt;&gt; now I have not been concentrating on learning html presentation, or using<br>
&gt;&gt; css to manage its presentation. I am somewhat surprised that there appears<br>
&gt;&gt; to be no information, documentation or tutorials on rendering except for<br>
&gt;&gt; some information in the &quot;HPI - An Introduction to Seaside&quot; book. &nbsp;I am<br>
&gt;&gt; spending a lot of time looking at methods in the example and test classes,<br>
&gt;&gt; which I don&#39;t mind, but I somehow doubt this is the best use of time. &nbsp;Where<br>
&gt;&gt; do I need to look for information about html rendering methods and message<br>
&gt;&gt; values?<br>
&gt;&gt;<br>
&gt;&gt; Thanks and sorry if I have completely missed some site that has relevent<br>
&gt;&gt; documentation.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; seaside mailing list<br>
&gt;&gt; <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; seaside mailing list<br>
&gt; <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</div></div></blockquote></div><br>