0

In my project there is a requirement that when we change language from Engish to Arabic all layout will be displayed in right to left position.So when i changed that all the components dispalyed right to left except growl messages.

I want to display growl message in left side of layout screen, how can I achieve that?

Menno
  • 12,175
  • 14
  • 56
  • 88
Amit Sharma
  • 309
  • 2
  • 4
  • 15

1 Answers1

1

Default css for .ui-growl class is :

.ui-growl {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 301px;
}  

You can achieve growl on left by applying following css for .ui-growl class:

 .ui-growl {
        left: 20px;
        position: fixed;
        top: 20px;
        width: 301px;
    }

would work.

Pankaj Kathiriya
  • 4,210
  • 2
  • 19
  • 26