Opera 中的布局问题

发布于 2024-09-13 13:29:13 字数 250 浏览 4 评论 0原文

在 Opera 中,我的网站徽标显得不合适。在过去的几个小时里我一直在试图找出解决这个问题的方法。它在 Firefox 和 Chromium 中运行得很好。徽标的 ID 就是“Logo”。

该网站位于 http://next.icartrading.com/

如果这不是最佳位置要发布此问题,请告诉我其他地方。谢谢!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静若繁花 2024-09-20 13:29:13

由于您如此粗鲁地否决了我之前的回复,因此此回复将附带您需要更改的确切代码,以及一个在线演示,向您展示它应该是什么样子。

在您的 CSS 中,添加以下内容:(

#HeaderContent
{
  position: relative;
}
#Logo
{
  position: absolute;
  top: 0;
  left: -55px;
  margin: 0;
}

替换您可能对这些值已有的任何现有声明。)

演示如下:

http://aesoft.org/zarel/rq/crown.html

如果您的版本看起来不像这样,那是因为您的错误,而不是我的错误,并且我很乐意再问一个问题,而不是投票否决我。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文