Greetings,

I've been developing my wicket application using maven+jetty and when I deployed it in Tomcat , all the CSS styles were missing. I noticed that all the CSS links have been modified by the container(or wicket?) and added the prefix "../"

Eg: In my pages I have:

<link rel="stylesheet" type="text/css" href="style/tablestyle.css"/>
<link rel="stylesheet" type="text/css" href="images/style.css"/>

But in the page Tomcat serves ,it has:

<link rel="stylesheet" type="text/css" href="../style/tablestyle.css"/>
<link rel="stylesheet" type="text/css" href="../images/style.css"/>

This works fine with Jetty ,what could be the problem?

thanks in advance


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to