Vaadin 7.2.5 Liferay 6.2 Alignment Gridlayout and Horizontallayout

Hi, im currently Migrating a Portal using Vaadin 6.8 and Liferay 6.0 to Vaadin 7.2.5 and Liferay 6.2.
Everything seems to work fine except the Gridlayout and the Horizontallayout.
It seems like every Layout is forced to be an Verticallayout.
At least if i try to add Components to an Grid / Horizontallayout the Components are Aligned Vertically no matter what i do.
Is there an known issue with the default themes of Liferay 6.2 / Vaadin 7.2 , or am i missing something?

Here is an example of Code i use to Display Components Horizontal Aligned:

        HorizontalLayout hLayout = new HorizontalLayout();
        hLayout.addComponent(new Label("Test1"));
        hLayout.addComponent(new Label("Test2"));
        hLayout.addComponent(new Label("Test3"));
        setContent(hLayout);