Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. 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