Reputation: 4825
In Opera my website logo appears out of place. I have spent the last couple of hours trying to figure out how to fix this. It works just fine in Firefox and Chromium. The ID for the logo is simply 'Logo'.
The site it located at http://next.icartrading.com/
If this isn't the best place to post this problem, tell me where else. Thanks!
Upvotes: 0
Views: 182
Reputation: 2201
Since you so rudely voted down my previous reply, this one will come with the exact code you need to change, plus an online demo showing you what it should look like.
To your CSS, add this:
#HeaderContent
{
position: relative;
}
#Logo
{
position: absolute;
top: 0;
left: -55px;
margin: 0;
}
(replacing any existing declarations you may have had for those values.)
The demonstration is here:
http://aesoft.org/zarel/rq/crown.html
If your version does not look like this, it is because of your mistakes, not mine, and I would appreciate asking another question instead of voting me down.
Upvotes: 2