[Webteam] Fwd: Delivery Status Notification (Failure)

karl karl.ramberg at chello.se
Mon Jan 16 19:49:56 CET 2006


Jason Rogers skrev:
> I don't know of any tool to refactor CSS, but there are environments
> that work better than Notepad (highlighting, completion, etc.).    See
> http://css-discuss.incutio.com/?page=3DCssEditors for some ideas.
>
> What happens to the contents div?  Does it float beneath the
> absoluteDiv?  If so, add 'float: left;' to #contents.
It gets pushed down on the page beneath the menu and news box.
I'm not sure why that happens :-)
I'll attach the css and a change set of the composite class I made in 
the seaside
wiki image, so you can test.
The new template called LeftColumn should replace the Menu template.
Karl


-------------- next part --------------
'From Squeak3.6 of ''6 October 2003'' [latest update: #5429] on 16 January 2006 at 7:48:39 pm'!
SWTemplateBody subclass: #SWTemplateLeftColumn
	instanceVariableNames: 'custom menu '
	classVariableNames: ''
	poolDictionaries: ''
	category: 'SmallWiki-Kernel-Template'!

!SWTemplateLeftColumn methodsFor: 'as yet unclassified' stamp: 'kfr 1/15/2006 13:48'!
renderBodyWith: anAction on: html 
	self renderDivFor: anAction on: html with: [
          menu ifNil:[menu _ SWTemplateBodyMenu new].
		custom ifNil:[custom _ SWTemplateBodyCustom new].
		 menu  renderBodyWith: anAction on: html.
		custom renderBodyWith: anAction on: html
		  ]	! !

!SWTemplateLeftColumn methodsFor: 'as yet unclassified' stamp: 'kfr 1/15/2006 13:48'!
renderConfigWith: anAction on: html

	super renderConfigWith: anAction on: html. 
	menu renderConfigWith: anAction on: html.
	custom renderConfigWith: anAction on: html.! !

"-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- "!

SWTemplateLeftColumn class
	instanceVariableNames: ''!

!SWTemplateLeftColumn class methodsFor: 'as yet unclassified' stamp: 'kfr 1/15/2006 10:34'!
title
	^'LeftColumn'! !
-------------- next part --------------
A non-text attachment was scrubbed...
Name: newstyle.css
Type: text/css
Size: 6265 bytes
Desc: not available
Url : http://liststest.squeakfoundation.org/pipermail/webteam/attachments/20060116/272512bb/newstyle.css


More information about the Webteam mailing list