how to change a portlet's title bar. i know that we can change the portlet's icons and all, but what about adding grafix such as a background image of the title bar instead of normal background color. i have tried to change TitleControl.java in org.apache.jetspeed.portal.controls, method getHTMLContent:
line 130:
TR finalTitle = new TR()
// .setBgColor( this.getTitleColor() )
.setBackground("/jetspeed/images/img01.gif")
.addElement( new TD()
.setBgColor( this.getTitleColor() )
.setNoWrap( true )
.setWidth("100%")
.setVAlign("middle")
.addElement( new B()
.addElement( getPortlet().getTitle() )
.addElement(" ") )
);
it compiles fine, but doesnt change the portlet title.
thanks in advance.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
