I made a web page with HTML and PHP and design it with CSS. When I open this webpage in Mozill aFirefox, it works as I designed but when I open it in Internet Explorer, the design of page does not according to the settings I designed in CSS file. How to fix it? lists
There are significant differences in the methods each browser employs to interpret and display CSS, especially Internet Explorer -- it's probably best to google this question and read as many tutorials as you can, as it can be a somewhat complex topic.
Can I suggest you put your request for help in your own post? That'll keep your specific site & issue separate.
That being said, I suspect some of your IE problems are caused by not having a DOCTYPE in your HTML. I recommend the very simple HTML5 DOCTYPE:
<!DOCTYPE html>
A couple other errors show when you run your HMTL through the W3C validator (HTML validator report, but start with the DOCTYPE and see how much that helps.
lists
My site is doing well in all browsers, except IE. Everything is not centered, and menu is incorrect!
Here is the link to my site: http://www.srdjan-djordjevic.comli.com/english/english_index.html
Can I suggest you put your request for help in your own post? That'll keep your specific site & issue separate.
That being said, I suspect some of your IE problems are caused by not having a DOCTYPE in your HTML. I recommend the very simple HTML5 DOCTYPE:
A couple other errors show when you run your HMTL through the W3C validator (HTML validator report, but start with the DOCTYPE and see how much that helps.
snillor, you are a genius! Thank you very much :)
Glad it was an easy fix for you.