On Sat, Jan 4, 2020 at 2:17 AM Roelof Wobben via Pharo-users <pharo-users@lists.pharo.org> wrote:
Hello,

I have this in my library class on the instance side :
 
updateRoot: anHtmlRoot
    super updateRoot: anHtmlRoot.
    anHtmlRoot stylesheet url: self class / #mainCss.
    anHtmlRoot javascript url: self class / #mainJs
and a file mainCss on the instance side filled with css
and still the css is not found

I'm not familiar with Seaside programming and especially not CSS. However, I have to wonder whether "url: self class / #mainCss" makes it look for a class method rather than an instance method.


anyone idea why ?

if needed I can put my whole code on github.


Regards,

Roelof