Hi Matt,

tx for the link. :) But form me that actually suck at front end design and
css it´s not so much help. 
I´d rather found the solution I need at sitemesh web site: 

http://www.opensymphony.com/sitemesh/

and reading this article: 

http://today.java.net/pub/a/today/2004/03/11/sitemesh.html

Here´s the path I follow to solve the problem: 

1) Edit decorators.xml to include a new decorator and point the pages I need
to use it: 

    <decorator name="parceiros" page="parceiros.jsp">
        <pattern>/listaPacotesPromocionais.jsp</pattern>
    </decorator>

2) Create a new decorator jsp called parceiros.jsp where I changed the
default.jsp implementation for <div id="sub"> tag, from: 

<c:if test="${currentMenu == 'AdminMenu'}">
            <div id="sub">
                <menu:useMenuDisplayer name="Velocity"
config="WEB-INF/classes/cssVerticalMenu.vm" permissions="rolesAdapter">
                    <menu:displayMenu name="AdminMenu"/>
                </menu:useMenuDisplayer>
            </div>
            </c:if>

This last code is used in the admin area to render the vertical menu. 
In my new decorator I changed this div to: 

             <div id="sub">
                <jsp:include flush="true" page="/listaParceiros.jsp" />
            </div>

3) Create the listaParceiros.jsp page with the images I need to render on
the right column as I expected.

This has solved my problem.

Tx and regards.




Matt Raible-3 wrote:
> 
> The only CSS documentation we have is likely from the CSS Framework:
> 
> http://www.contentwithstyle.co.uk/Articles/17/
> 
> Matt
> 
> On 1/30/07, mmaia <[EMAIL PROTECTED]> wrote:
>>
>> Hi,
>>
>> I´d like to know if there´s some tutorial on using the css styles that
>> ships
>> with default appFuse implemetation. I´m using a customized
>> puzzlewithstyle
>> style and now I need to use 3 column layout but as I sucks at interface
>> design I need some help here. Is there such css style guide?
>> --
>> View this message in context:
>> http://www.nabble.com/Using-css-tf3142321s2369.html#a8709195
>> Sent from the AppFuse - User mailing list archive at Nabble.com.
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> 
> -- 
> http://raibledesigns.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Using-css-tf3142321s2369.html#a8732548
Sent from the AppFuse - User mailing list archive at Nabble.com.

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

Reply via email to