网站对齐问题

发布于 2024-10-07 22:16:05 字数 182 浏览 2 评论 0原文

直到最近我的网站一切都很好并且正确对齐。不久前我集成了thickbox onload。从那时起,该特定页面的对齐方式就变得混乱了。请帮帮我。

请通过链接供您参考

其他页面都很好,但主页是扭曲的。请指教。

My site was all fine and properly aligned until recently. Only sometime back I integrated the thickbox onload. Since then the alignment of that particular page has gone haywire. Please help me out.

Please go through the link for your reference

The other pages are fine but the homepage is distorted. Please advise.

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

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

发布评论

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

评论(4

彼岸花似海 2024-10-14 22:16:05

你把厚盒CSS放在你的CSS后面。

thcickbox css 中的第一行:

*{padding: 0; margin: 0;}

您的#main div 居中方式如何:

#main { background-color:; background-image: url('images/orange2.jpg')
    margin-right: auto;
    margin-left: auto;
}
body {background-color:;background-image: url('images/orange-20.jpg')} 
*{border: 0;margin-top: 0px;margin-bottom: 0px;}

由于使用了thickbox CSS,margin: 0 auto 方法被取消。

2个解决方案:

  1. 删除thickbox css的第一行,
  2. 将CSS放在后面并尝试。

正如 @livetolearn 所说,您用来居中的方法使用 width 效果更好。

另一方面,你的 CSS 是高度可优化的。
例如,

background-color:; background-image: url('images/orange2.jpg')

=

background:url('images/orange2.jpg')

You put the thickbox CSS after yours.

first line in the thcickbox css :

*{padding: 0; margin: 0;}

How's your #main div is centered :

#main { background-color:; background-image: url('images/orange2.jpg')
    margin-right: auto;
    margin-left: auto;
}
body {background-color:;background-image: url('images/orange-20.jpg')} 
*{border: 0;margin-top: 0px;margin-bottom: 0px;}

The margin: 0 auto method is canceled because of the thickbox CSS.

2 solutions :

  1. delete the 1st line of the thickbox css
  2. Put your CSS after and try.

As @livetolearn said, the method you used to center is better with a width.

On another point, your CSS is highly optimisable.
For example,

background-color:; background-image: url('images/orange2.jpg')

=

background:url('images/orange2.jpg')
别把无礼当个性 2024-10-14 22:16:05

在你的css文件中替换这段代码

#main {
background-image: url("images/orange2.jpg");
margin: 0 auto;
width: 900px; // replace with your width
}

in your css file replace this code

#main {
background-image: url("images/orange2.jpg");
margin: 0 auto;
width: 900px; // replace with your width
}
欢烬 2024-10-14 22:16:05

从我所在的地方看起来还不错。
然而在 FF 中页面并不居中。这是问题所在吗?
添加:

#Table_01 { margin: 0 auto}

您在 IE 中确实遇到脚本错误
有“alerrt”拼写错误吗?

<script type="text/javascript">

function my_code(){
alerrt(" 

Looks ok from where I am.
In FF however the page is not centered. Is that the issue?
Add:

#Table_01 { margin: 0 auto}

You do get a script error in IE
Poss "alerrt" spelling mistake?

<script type="text/javascript">

function my_code(){
alerrt(" 
奢欲 2024-10-14 22:16:05

这些行位于 Thickbox.css 中,但未正确覆盖。这可能是原因

* {
    margin-top: 0;
    margin-left: 0;
}

These lines were in thickbox.css and they were not properly overwritten. That may be the cause

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