harbir 0 Newbie Poster

hi,

I have three jsp files.

main.jsp
grizzly-link-application.jsp
grizzly-link-menu.jsp

In the mail.jsp I am including the other two.

<%@ include file="/WEB-INF/jsp/grizzly-link-application.jsp" %>
<%@ include file="/WEB-INF/jsp/grizzly-link-menu.jsp" %>

my grizzly-link-application.jsp and grizzly-link-menu.jsp files are actually pointing to the different css files.

Content of grizzly-link-application.jsp is:

<link id="grizzlystyleid" title="grizzlystyletitle" href="style/application/grizzlystyle.css" rel="stylesheet" type="text/css"/>

Content of grizzly-link-menu.jsp is:

<!-- CSS for Menu -->
<link id="css-menu-id" title="css-menu-title" href="style/yahooui/menus/menu.css" rel="stylesheet" type="text/css"/>

<!-- Standard reset, fonts and grids -->
<link id="reset-fonts-grids-id" title="grizzly-reset-fonts-grids" href="style/yahooui/menus/reset-fonts-grids.css" rel="stylesheet" type="text/css"/>

The issue is that, when the main.jsp page is loaded, the css point by grizzly-link-application.jsp is showing, but the other one is not.

When disable/enable all styles in the browser, then the the css point by grizzly-link-menu.jsp is also shown.

But the issue is why do I have to disable/enable all styles to get css that i spointed by the second jsp loaded.

Any help in the right direction will be appreciated.

Regards