I am using <p:growl>PrimeFaces 3.2 component to display faces messages. I would like to adjust its position so that it is displayed on the left side, and not on the right side.
I tried the following:
<h:head>
<title>Facelet Title</title>
<style type="text/css">
.ui-growl {
position:absolute;
top:20px;
left:20px;
width:301px;
z-index:9999;
}
</style>
</h:head>
<h:body>
<h:form id="frm">
<div id="add">
<p:growl id="growl" showDetail="true" sticky="true" autoUpdate="true"/>
<h:panelGrid columns="2" >
...
But that did not work. Where was I wrong?
source
share