Bottom of page cut off

Bill555

New Member
My new web page: http://it.flexinet.com.au displays ok with Internet Explorer 8 but will not display the bottom lines in any other browser. There are four more lines below "This page last updated....". The HTML and CSS has passed W3C validation. I get the same results with Firefox on XP and Vista. Any ideas what I am doing wrong?
PROBLEM RESOLVED - Bill
 
Last edited:

Bill555

New Member
I found the problem. It was with my CSS coding. I had to have a Universal Selector for Internet Explorer and take these settings out of their original position:
/* Universal Selectors for Internet Explorer */

* html body{ /*IE hack*/
padding: 200px 0 0 0;
}

* html #maincontent{ /*IE hack*/
height: 100%;
width: 100%;
}
 
Top