
September 8th, 2012, 09:19 AM
|
 |
JavaScript is not spelt java
|
|
Join Date: Feb 2011
Location: Landan, England
|
|
This is caused by the first paragraphs' top margin:
Code:
div#content p {
margin-top: 0px;
}
Note that this will remove the top margin from all paragraphs in the content div, so a better solution should be considered.
Added: I would recommend that you generally avoid absolute positioning - prefer floats. Absolute-positioning is only suitable in certain situations.
Last edited by AndrewSW : September 8th, 2012 at 09:21 AM.
|