Page 1 of 1

How to avoid scrollbars in p:layoutUnit?

Posted: 16 Jul 2012, 10:39
by webmeiker
Hi,
What I should do to avoid scrollbars in one of the regions of my

Code: Select all

<p:layout fullPage="true">
panel?
Thanks!

Re: How to avoid scrollbars in p:layoutUnit?

Posted: 16 Jul 2012, 15:35
by jamesarbrown
From memory overflow:hidden is how I stopped it.

Code: Select all

                <p:layoutUnit position="west" style="border:none; overflow:hidden; padding:none">
                    <ez:mainmenu_cc/>             
                </p:layoutUnit>

Re: How to avoid scrollbars in p:layoutUnit?

Posted: 17 Jul 2012, 08:26
by webmeiker
Finally I achieve that with:

Code: Select all

.ui-layout-north {                    
	overflow: visible !important;
}

.ui-layout-north .ui-layout-unit-content {
	overflow: visible !important;
}   
Thanks!