<div dir="ltr"><div><div>Hi Dave,<br><br></div><div>The thing ultimately responsible for displaying &quot;Squeak Development&quot; at the top of the squeaksource page is the SSGenericFrame&#39;s class instance variable named Logo, and you can change it with SSGenericFrame &gt;&gt; makeLogo:<br>
</div><div><br></div><div>I&#39;ve discovered this via the following steps:<br></div><div><br>Opened up <a href="http://squeaksource.com">squeaksource.com</a> with chrome, right-clicked on &quot;Squeak Development&quot; and selected &quot;Inspect Element&quot; from the context menu. <br>
</div><div><br></div>It shows that the responsible part for displaying &quot;Squeak Development&quot; in the html is the &lt;div id=&quot;top&quot;&gt;...&lt;/div&gt; tag, and that<br></div>it has a background css property associated via its id: #top { ... background: url(&quot;/@k9MDSLXvXkJLBWh5&quot;) ... }<br>
<div><br></div><div>I&#39;ve loaded SqueakSource-bf.1066 into an image, and looked for the string &#39;#top&#39;. This popped up the SSGenericFrame &gt;&gt; renderStyleTopOn: method. I&#39;ve followed through the message sends, and finally arrived at the Logo class instance variable.<br>
<br></div><div>HTH,<br></div><div>Balazs<br></div></div>