Reputation: 11
I am working on my website ( http://idefinland.com ) and have problem with displaying navigation. It looks good in all browsers and with any resolutions. Ideally it looks like this: ![Proper navigation][1]
Sometimes in Chrome and Safari navigation drops out of the header. It looks like this:
http://h1964807.stratoserver.net/files/share/9_1_2012/XxtmQqaFD0a0tEqylkdg.jpg
Then I reload the page and the problem disappear.
Has anyone ideas on what could be a reasons for such a problem?
Upvotes: 1
Views: 41
Reputation: 92943
Read the directions in footer.css -- there's some code you need to put in your HTML file to fully enable this stylesheet. Specifically, this needs to go between the <head>..</head>
tags:
<!--[if !IE 7]>
<style type="text/css">
#wrap {display:table;height:100%}
</style>
<![endif]-->
Upvotes: 1