본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

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

자세히 살펴보기

Pages load to the far right of browser. Can't view them

  • 5 답장
  • 2 이 문제를 만남
  • 10 보기
  • 최종 답변자: cor-el

more options

My homepage loads properly in firefox. My pages within the site don't load properly. All content is off to the far right of the screen. It is impossible to view page content.

Site performs normally in Chrome and Safari.

homepage: http://hauteaudio.com

examples of pages that don't load properly: http://hauteaudio.com/blog/ http://hauteaudio.com/careers/ http://hauteaudio.com/our-team/

My homepage loads properly in firefox. My pages within the site don't load properly. All content is off to the far right of the screen. It is impossible to view page content. Site performs normally in Chrome and Safari. homepage: http://hauteaudio.com examples of pages that don't load properly: http://hauteaudio.com/blog/ http://hauteaudio.com/careers/ http://hauteaudio.com/our-team/

모든 댓글 (5)

more options

This appears to be a one-page site with a vertical design. Did it change from previously having a horizontal design?

In case you haven't tried the usual:

When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.

(1) Bypass Firefox's Cache

You can clear Firefox's cache using:

"3-bar" menu button (or Firefox menu) > Preferences > Advanced

On the Network mini-tab > Cached Web Content : "Clear Now"

If you have a large hard drive, this might take a few minutes.

(2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:

  • right-click and choose View Page Info > Security > "View Cookies"
  • (menu bar) Tools > Page Info > Security > "View Cookies"
  • click the globe or padlock icon in the address bar > More Information > "View Cookies"

In the dialog that opens, you can remove the site's cookies individually.

Then try reloading the page. Does that help?

more options

Unfortunately, That didn't help.

more options

Content is off the screen to the right. As soon as I begin to scroll down, the content move to its proper location.

example: http://hauteaudio.com/blog/

more options

Sorry, I only navigated around on the home page because the links didn't take me to those other pages.

On /blog and /our-team the problem is that there is excess padding here:

nav #fluid-nav > li {
    padding-bottom: 16px;
}

This causes the ul to stick out of the 50px top bar 12px lower than intended. You could reduce that padding-bottom to 4px or add margin-top:12px to div.content-wrapper as a workaround.

more options

Looks like an issue with floating content and a missing clear:both

Test in Web Console:

javascript:(function(){var doc=document,css=doc.createElement('link');css.rel='stylesheet';css.type='text/css';css.href='data:text/css,div.content-wrapper{clear:both}';doc.documentElement.childNodes[1].appendChild(css);})();

글쓴이 cor-el 수정일시