CSS for WSRP Struts Portlets
792041Aug 20 2010 — edited Aug 24 2010I have a Struts 1.3 Portlet running in WLP 10.3.2. The css inside JSP displays right in a web-app. But when I expose over WSRP, the css is not getting applied.
Here is the simple jsp I have:
test.jsp
-----------------------
<style type="text/css">
.test{
border: 2px solid red;
background-color : blue;
}
</style>
<span class="test">CSS Testing</span>
Qn. 2)
Do I need to have html,head and body tags for Portlets that I want to expose over WSRP?
Qn3) Do I need to go for render dependencies here..