Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Firefox is breaking website

more options

Hey there!

I'm working on a site and it looks fine in other browsers, yet Firefox is breaking it.

The site is http://thefabme.com/. Let me list all the elements that are breaking:

1. The text within the blog circle is shifting up.

2. The search magnifying glass is shifting up.

3. The searchbar is shifting left.

4. On individual product pages, such as thefabme.com/product-category/wedges, the images used for the products are straight up disappearing.

In other browsers, the site looks like this: http://img20.imageshack.us/img20/7241/2uc9.png

Cheers,

Pat

Hey there! I'm working on a site and it looks fine in other browsers, yet Firefox is breaking it. The site is http://thefabme.com/. Let me list all the elements that are breaking: 1. The text within the blog circle is shifting up. 2. The search magnifying glass is shifting up. 3. The searchbar is shifting left. 4. On individual product pages, such as thefabme.com/product-category/wedges, the images used for the products are straight up disappearing. In other browsers, the site looks like this: http://img20.imageshack.us/img20/7241/2uc9.png Cheers, Pat

글쓴이 prawson 수정일시

선택된 해결법

On #1 (Blog button), you can get the absolute positioning of the span to work using this:

<div id="blog-button">
  <a href="/blog" style="display:inline-block">
    <span>Blog</span>
  </a>
</div>

This also enlarges the link to be square around the entire circle, which might be helpful to users who have difficulty positioning the mouse pointer more specifically over the word blog.

However, as a general comment, it might be less fragile to use the ordinary flow more and rely less on positioning.

Also, you won't be happy to see it on IE8...

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (4)

more options

I'm sorry this is a Firefox support website and not a web development / designing forum, so you may not get the best answers here.

Here you have a list of recommended web design forums where you have more chances to get an accurate answer: http://www.hongkiat.com/blog/17-forums-web-designers-shouldnt-missed/

more options

Hi Pat,

You may get comments on this forum, but the subject of web design is not really within the scope of this forum. You would be better trying another forum, and specifically relating to Firefox maybe this Mozillazine forum

It will probably be suggested as a first step that you check your code against a validator. When I try that it displays hundreds of errors and thousands of warnings

more options

The image on the Wedges page has a z-index:-1 and thus doesn't show.

.loop_products_additional_img_wrapper {
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
}

The elements to the right of the search bar probably be fixed by adjusting the left value of the container to accommodate the width of the search bar.

more options

선택된 해결법

On #1 (Blog button), you can get the absolute positioning of the span to work using this:

<div id="blog-button">
  <a href="/blog" style="display:inline-block">
    <span>Blog</span>
  </a>
</div>

This also enlarges the link to be square around the entire circle, which might be helpful to users who have difficulty positioning the mouse pointer more specifically over the word blog.

However, as a general comment, it might be less fragile to use the ordinary flow more and rely less on positioning.

Also, you won't be happy to see it on IE8...