Hi i have problem with rich:panel width in my layout... in template.xhtml i have folloving code:
...
<style type="text/css">
.col {
vertical-align: top;
}
</style>
...
<div class="body">
<h:panelGrid columns="2" width="100%" columnClasses="tpanels, col">
<rich:panel style="min-width:240px; max-width:240px">
<f:facet name="header"></f:facet>
<ui:include src="sidemenu.xhtml"></ui:include>
</rich:panel>
<rich:panel style="min-width:600px;width: auto;">
<f:facet name="header"></f:facet>
<ui:insert name="body" />
</rich:panel>
</h:panelGrid>
</div>
...This is a browser CSS problem, rather than RichFaces.
Try searching the web for "min-width CSS" to find a workaround for the difference between IE and FF with handling of that attribute.