hi Tomasz,

This works, thanks. however, the its effect is, look just right in IE7 but
shift too much to the right in other browsers, any idea how to make this
works only in IE7?

Angelo

Tomasz Dziurko wrote:
> 
> 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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/T5%3A-default.css-and-IE7-problem-tp17077497p17080265.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to