Override T5 default css file. Put this in every your page class or (better solution) in TopPage from all pages inherits. Just remember not to place TopPage in pages package, so it won't be accessible to user (e.g. place it in package org.myapp.commons).
@Inject @Path("context:styles/style.css") private Asset styles; public Asset getStyles() { return styles; } and in file style.css place: html > body div.t-error li { margin-left: 20px; } In this file you can everride all default styles from Tapestry. Regards -- Tomasz Dziurko --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]