lchales
lchales

Reputation: 7

My test site only works in Safari and Chrome no IE no Firefox, Please Help

to any code guru, here is my test site http://www.chalesphotography.com/site/home.html it's not a finis site i'm just working on it, the problem is at this point is not working in any version of IE or Firefox. Please Help Thank You in advance

Upvotes: 0

Views: 621

Answers (3)

HollawayGraphics
HollawayGraphics

Reputation: 11

try setting your z-index to 1000

Upvotes: 1

BernzSed
BernzSed

Reputation: 1139

Set the height of the html to 100%.

html {
   height : 100%;
}

Edit: Is this what you tried to do in your css by using html body {...}? If so, you need to add a comma between "html" and "body" to make the css rules apply to both html and body. Otherwise, the browser applies the rules to element "body" which is a descendent of element "html".

This will create ugly scrollbars, but you can remove them with

overflow: hidden;

Upvotes: 1

jcomeau_ictx
jcomeau_ictx

Reputation: 38432

Have you checked it with the w3 validator? have you used firebug, and the built-in firefox error console?

Upvotes: 0

Related Questions