搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

site slideshow suddenly not working

  • 5 回覆
  • 23 有這個問題
  • 1 次檢視
  • 最近回覆由 cor-el

more options

Yikes AJAX/Spry slide-show made in DW CS3 worked fine until last week Thursday!!!! Noticed update from 3.6.8 to 3.6.10 !!! Whats up change in the way code is read?? Works in all other browsers

Yikes AJAX/Spry slide-show made in DW CS3 worked fine until last week Thursday!!!! Noticed update from 3.6.8 to 3.6.10 !!! Whats up change in the way code is read?? Works in all other browsers

被選擇的解決方法

I see that you have already removed that line from the CSS file with the double url (looks like a failed background).

background-image: url(%20#666%20url(%27../images/bg_grad_gray1.gif%27);

If you need that background image then the code should be (just like the others):

background-image: url('../images/bg_grad_gray1.gif');
background: #666 url('../images/bg_grad_gray1.gif');

It just noticed in the Tools > Error Console that there is a missing px unit in the CSS rule for the body, Firefox needs units if the value is not 0.

body {
  margin: 0;
  padding: 0 0 0 25;  -> padding: 0 0 0 25px;

}

從原來的回覆中察看解決方案 👍 0

所有回覆 (5)

more options

That may be an easy fix.
Firefox has a problem with one line in the CSS file.
Something went wrong there and all the CSS rules that follow are skipped

http://www.creativeprojects808.com/ajaxss-cp/scripts/styles.css

#transport a {
	background-image: url(%20#666%20url(%27../images/bg_grad_gray1.gif%27);
}
more options

Thanks, Was able to fix the slideshow with this line of code removed Thankyou

That may be an easy fix.
Firefox has a problem with one line in the CSS file.
Something went wrong there and all the CSS rules that follow are skipped

http://www.creativeprojects808.com/ajaxss-cp/scripts/styles.css

#transport a {
	background-image: url(%20#666%20url(%27../images/bg_grad_gray1.gif%27);
}

由 digiadvantage 於 修改

more options

選擇的解決方法

I see that you have already removed that line from the CSS file with the double url (looks like a failed background).

background-image: url(%20#666%20url(%27../images/bg_grad_gray1.gif%27);

If you need that background image then the code should be (just like the others):

background-image: url('../images/bg_grad_gray1.gif');
background: #666 url('../images/bg_grad_gray1.gif');

It just noticed in the Tools > Error Console that there is a missing px unit in the CSS rule for the body, Firefox needs units if the value is not 0.

body {
  margin: 0;
  padding: 0 0 0 25;  -> padding: 0 0 0 25px;

}

more options

Thanks fixed with removed line of code - took out the extra space in < /b> for good measure