Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

some webpages don't load properly, tried everything.

more options

some website don't load correctly.. i've emptied cache,cookies..tried running mozilla in safemode and resfreshed mozilla to default settings.. nothing has helped. main two webpages i often visit that has that problem are: youtube.com and runescape.wikia.com attached picture to show how they respond. other webpages seems to work fine. youtube usually just gives blank white page. after reloading the page once or twice it loads correctly.

some website don't load correctly.. i've emptied cache,cookies..tried running mozilla in safemode and resfreshed mozilla to default settings.. nothing has helped. main two webpages i often visit that has that problem are: youtube.com and runescape.wikia.com attached picture to show how they respond. other webpages seems to work fine. youtube usually just gives blank white page. after reloading the page once or twice it loads correctly.

Все ответы (4)

more options

image of the problem.

more options

hellboy123 said

image of the problem.

That's strange. It's like the entire WikiaPage section is set to hidden or transparent. Does it appear if you do this:

Select and copy the following script (it tries to override the section's visibility property being set to hidden or being made transparent by having opacity set to 0):

document.getElementById('WikiaPage').style.visibility = 'visible'; document.getElementById('WikiaPage').style.opacity = '1';

After loading the wiki, open Firefox's Web Console in the lower part of the tab using either:

  • Ctrl+Shift+k
  • menu button > Web Developer > Web Console
  • (menu bar) Tools > Web Developer > Web Console

Paste the script in the bottom bar next to >> and press Enter to execute it. Firefox may ask you to do something to prove you understand that it is risky to run scripts from strangers.

Any improvement?

more options

Not quite sure what this script is supposed to do or why its neccesary. how could it solve to problem exactly?

Could you care to elaborate?

Thanks.

more options

The script would overrides two style properties commonly used to hide content without collapsing the layout. I was curious whether one of those was being used to hide the content, but I can't guarantee that information would lead to a solution.