Hello,
my website is not really working on firefox, but is working very well on I.E, i was wondering if someone help me out, sometimes Firefox works and I.E doesent, its all mixed up
Thanks
Hello,
my website is not really working on firefox, but is working very well on I.E, i was wondering if someone help me out, sometimes Firefox works and I.E doesent, its all mixed up
Thanks
anybody know??
There are very few templates that work exactly the same in both browsers. Your best bet is to create a secondary css file for ie users and lin to it in the header using the html IF method. An example would be for an ie6 user ->
<!--[if IE 6]>
Special instructions for IE 6 here and link to specific css file for ie6.
<![endif]-->
You can use this same command in your header for the other versions of ie as well. ([if IE7]) etc…
Can you give me a demo of this, my predict: Lib/CSS Make new file with that link?
If you’re trying to make a sticky footer I’d recommend this: http://ryanfait.com/resources/footer-stick-to-bottom-of-page/
It’s more compatible.
good advice Dave but in this case not really nessecary
.header {
background-color:White;
height:138px;
overflow:hidden;
}
there is your problem:
.header is a hierarchical DIV tag
mean everything pretty much cascades off of it
all other DIV are nested into it
remove the height tag
and you should be fine
Also you will need to add some height to the .header1 DIV i would suggest 145px