See comments below...

> Hello,
> 
> I have some questions about configuration I'm hoping someone 
> can answer.
> 
> How do I remove the, welcome to Jetspeed title? I took it out of the 
> top.vm file and it still appears.

Make sure your output is generated using the VM files. Did you use the
top.vm file of the right directory?

> If I wanted to add a background image, what file should I 
> modify to do that?

If you are using the Velocity stuff, I would add it to the
templates/vm/layout/.../default.vm

> I wanted the title in my portlets to be hyper linked to a 
> website. So I 
> overrirode the getTitle() method. Is this the proper way to 
> do that? 

I think this is not too bad. Maybe there are more sophisticated methods but
anyway this seems to be a good idea.
 
> I tried putting an anchor for the title in the .xreg file and it didn't 
> seem to work.

I don't understand the question. What kind of anchor are you speaking about?
HTML anchors? You can't use pure HTML tags inside of an XML file. Maybe it
works with escaping them:
   
   <  =   &lt;     =    &#60;
   >  =   &gt;     =    &#62;


> How do I add more styles to the look and feel. I want the 
> title bars of 
> the portlets to contain pictures rather than flat colors.

I think you have to change the template used for the aggregation of the
portlets:  jetspeed.vm  You might be able to change the title to this:

    <td align="left" nowrap="true" valign="middle" width="100%" >
      <TABLE BACKGROUND="Myimage.gif">
        <TR>
          <TD>
            $portlet.Title
          </TD>
        </TR>
    </td>


> Finally, I'm using the download from the stable build, 
> version 1.3a, and 
> there seem to be some bugs when changing the layouts from two 
> column to 
> three column. When will the next stable release be available?
> Is there a book on jetspeed?
> 
> Thanks for any help,
> 
> Joe
 

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to