Forum Moderators: not2easy
<div id="Disclaimer">
Blah blah...
</div>
The ID of an element should only occur once in a document - it should be unique. So there will only be one occurance of
id="Disclaimer".
It is good practise to always use lowercase ID/Class names. Since it is case-sensitive, "Disclaimer" is different to "disclaimer".
#Disclaimer {
bottom : 0px ;
position : absolute ;
text-align : center ;
width : 550px ;
}
Marshall