搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

the style of my website doesn't work anymore under Firefox 3.6.6 (it was working under the previous version)

  • 3 个回答
  • 1 人有此问题
  • 22 次查看
  • 最后回复者为 Raine Dragon

more options

The style of my webpage isn't compatible anymore with Firefox 3.6.6. I have some points. My website is already under construction : this is the url http://siguetusflotas.akham.net/ . And I have also compatibility problems with internet explorer. But it was working with the previous Firefox version.

== I changed the Firefox version

The style of my webpage isn't compatible anymore with Firefox 3.6.6. I have some points. My website is already under construction : this is the url http://siguetusflotas.akham.net/ . And I have also compatibility problems with internet explorer. But it was working with the previous Firefox version. == I changed the Firefox version

所有回复 (3)

more options

From http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fsiguetusflotas.akham.net%2Fseguimientos%2Fassets%2Fcss%2Fstyle_tcm804.css

You are not properly enclosing the url within background url("") statements, there is only a " at the beginning and misssing a " at the end.

There are also invalid padding statements.

more options

I'm having a similar issue with my website. It was originally built using Yahoo Sitebuilder. Since I've taken over the project I've been using dreamweaver and no longer use Sitebuilder to upload or manage the site. However, my links and navigation works from the home page once you've clicked on another link and go to another page the page can be seen but none of the links work to navigate further after you've gone away from the home page. My site is www.gtecht.com. Any Help on this would be grateful.

more options

bro32nd, your issue is with your code. Inside your page you have a line that looks like this: (I had to remove the less than and greater than symbols from the end so it would post here) div id="root1" style="position:absolute;left:4;top:4;width:1113;height:1000"

Position:absolute means that the div layer (like a big sheet of clear plastic) is moved to the front of the page. Since you didn't tell it where to go with a z-index, it assumes it should be in the very front.

on every page where the links don't work, find that section of code and after height:1000 add in

;z-index:-5;

it should then work.

由Raine Dragon于修改