I have started to learn CSS recently; I made a page using it. It works good in FF and mostly good in IE on my computer. But when I uploaded the htm file and the CSS file, the style is not applied: http://www.paletinsaat.com/yeni/profilt.htm
(Both the htm and css file are in the same folder.)
How can I solve this external file issue?
My second question: In Firefox, the page appears as I want it to be. But in IE, the background graphic in the footer is not showing full height. I haven't been able to understand the reason for the difference.
Thank you very much for your attention in advance..
Your css file comes up with a 404 error, make sure you uploaded it into the same directory as your HTML file, or that you change the path to the CSS file in the <link /> tag. (or that you have the file name spelled correctly, etc.)
First thing you may want to look at is learning CSS. The code you use have lots of embedded styles (e.g. <div style=' ') which will make the correction more difficult. SEparate all styles from the content first and also ensure you dont mix divs and the tables. Either use one of them not both!