Right now I am facing a problem with Image alignment. I want to place the Image bar to right side. Here I present my code where I wright the code for image to place side of the bar but it always show Left side. ============== public VerticalPanel getLogo(){ VerticalPanel logopaPanel = new VerticalPanel(); logopaPanel.setHorizontalAlign(Style.HorizontalAlignment.RIGHT); Image img = new Image("resources/images/loader/ajax-loader.gif"); logopaPanel.add(img); return logopaPanel; }
============= Alignment.jpg