CSS in the Web applcation created by Yiic don't look nice in IE

I do know that the web application created by the yiic tool is a skeleton/base but it don't look that good in IE7.

e.g the 'Welcome, demo' text is overlapping the 'menu bar'

one way to fix it could be to change css like this:

from

#header

{

margin: 0;


padding: 0;

}

to

#header

{

margin: 0;


padding: 0px 0px 20px 0px;

}

Thanks. Fixed.