Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

The tables in my website are off to the right in Firefox only.

  • 4 trả lời
  • 2 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi Alitimmons

more options

I've recently uploaded a new site. The table in the center is off the the right on all pages.

www.baxterdentalclinic.com

Any input would help. Thanks!

I've recently uploaded a new site. The table in the center is off the the right on all pages. www.baxterdentalclinic.com Any input would help. Thanks!

Giải pháp được chọn

Good catch Jefferson!

Adding this missing semicolon in the Syle editor immediately fixes this issue.

#nav {
	background: url(full-header.gif);
	height: 38px;
	width: 850px;
	margin: 0 auto;
}

Note that the Web Console (Firefox/Tools > Web Developer) can be used to find such errors.

Expected color but found 'height'.  Error in parsing value for 'background'.  Declaration dropped. nav.css:10
Expected ':' but found '850px'.  Declaration dropped. nav.css:11
Error in parsing value for 'background-position'.  Declaration dropped. nav.css:65
Expected ':' but found '850px'.  Declaration dropped.

There is also a missing colon with the width 850px; rule in 360dental.css

#nav {
	
	height: 37px;
	width: 850px;
	margin: 0 auto;
	background-image: url(/Images/page_images/nav.png);
}
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (4)

more options

Add the following to your style sheet. If it's too much, then just add it to the parent of the table.


.container { clear: both; }

<div class="container" style="clear: both">
<table width="850"…

You should also address the markup and CSS errors in your site, and add a site icon.

more options

It seems the <li> elements in ul#nav are height:38px, while the ul#nav itself is height:37px tall (per 360dental.css). This is causing the bad float behavior.

In nav.css, on line 10, you actually do have height:38px but Firefox is not reading it. Hmm... okay, there is a semicolon missing at the end of the previous line. So, add a semicolon to the end of line 9 in nav.css and it should be fixed.

more options

Giải pháp được chọn

Good catch Jefferson!

Adding this missing semicolon in the Syle editor immediately fixes this issue.

#nav {
	background: url(full-header.gif);
	height: 38px;
	width: 850px;
	margin: 0 auto;
}

Note that the Web Console (Firefox/Tools > Web Developer) can be used to find such errors.

Expected color but found 'height'.  Error in parsing value for 'background'.  Declaration dropped. nav.css:10
Expected ':' but found '850px'.  Declaration dropped. nav.css:11
Error in parsing value for 'background-position'.  Declaration dropped. nav.css:65
Expected ':' but found '850px'.  Declaration dropped.

There is also a missing colon with the width 850px; rule in 360dental.css

#nav {
	
	height: 37px;
	width: 850px;
	margin: 0 auto;
	background-image: url(/Images/page_images/nav.png);
}

Được chỉnh sửa bởi cor-el vào

more options

Thank you!!! Look what happens when you work too late! Simple fix. Much appreciated.