Hi Arnoud,
I just did a quick little test on the demo and I found that I had to create a new div to get it to work properly.
So you need to follow these steps:
1. Remove the background image logo.png from the #container div.
2. Create a new div class like this:
| Code: |
.test_logo {position: absolute;top: 80px;height: 200px;width: 700px;background: url(../images/logo.png) no-repeat right top;left: auto;z-index: 200;}
|
and then add the following to the index file inside the outer container.
3. <div class="test_logo"></div>
The width, top, height all depend on the size of your logo. You may need to tweak the css above to get a better fit for your site but that should basically deliver what you have asked for. I didnt test it in ie 6 or 7 but it should be ok ... although ie6 may need afew hacks to get it to work properly.
Cheers Anthony.