AddressBook Demo logo image problem

Hi,

I was learning Vaadin by importing the AddressBook Demo project. Got everything working except the logo image. It was supposed to display in the Toolbar using HorizontalLayout. All buttons are created with the images successfully with the exception of the logo image. Any idea?

I had setTheme(“contacts”); coded in the buildMainLayout() method

I also had the following codes in the CreateToolbar method:

	lo.setMargin(true);
	lo.setSpacing(true);

	lo.setStyleName("toolbar");

	lo.setWidth("100%");

	Embedded em = new Embedded("", new ThemeResource("images/logo.png"));
	em.setType(Embedded.TYPE_IMAGE);
	lo.addComponent(em);
	lo.setComponentAlignment(em, Alignment.MIDDLE_RIGHT);
	lo.setExpandRatio(em, 1);

style.css seemed to have all the suggested definitions. As these files are downloaded and imported into Eclipse EE, then compiled and generated the WAR file.

Any help is appreciated!

Jeff