How to test and modify styles depending on the browser type
1 Near the top of your JSP, link in the allstyles.css style sheet:
<LINK href="<html:rewrite page="/css/allstyles.css"/>"type="text/css" rel="stylesheet" >
2 After this line, link in the style sheet located in the current skin’s css directory:
<LINK href="<ap:skinResource resource="/css/skinstyles.css" />"
type="text/css" rel="stylesheet" >
3 Use the Jakarta Struts bean:write custom tag to generate and include style definitions for styles defined using the skin customization pages:
<STYLE>
<bean:write
name="userinfobean" property="skinConfig.cssCode" />
</STYLE>
4 If the skin customization styles contain any settings that do not work in a specific browser, you can override them individually.