Why doesn't footer text expand to same length as text at very bottom?
I am designing a site for my school website and have been running into multiple footer problems. While most problems, seem to have been fixed, I do have one concern: the footer is split into two parts, an upper and a lower. While the lower开发者_如何学编程 text is stretched to the desired width, I am unable to reproduce the effect on the upper portion of the footer so that all text is aligned at the same level. I have uploaded an example of the template at http://test.victoriaparkci.com/tpl2/ but I believe that the problem lies somewhere in the site's CSS. Please help if you can.
Thanks.
EDIT: Thanks, changing margin and padding fixed the problem.
The problem is happening because the upper part uses ul tag, which is unordered list, and this list has a "respectively" large indent. You will need to use something like this to remove the indent:
ul {
padding: value1;
margin: value2;
}
ul li {
padding: value3;
margin: value4;
}
精彩评论