I am using Constellation Theme wordpress and i am unable to get the footer out of the body
even though i place the code out of the body it was considering it as code inside the body how can one solve this kind of problem
site the problem exists is http://design3web.in/law-firm/
You can’t, because the green border container is the
bodyof a page. And you can’t display any HTML element outside the body. You need to tweak your markup to achieve this.Note: Your whole HTML structure is buggy. Try to make it as according to w3c Standards
EDITED:
A Quick Tip:
Add a wrapper
<div>after<body>and apply all classes of body i.e.home page page-id-23 page-template-defaulton wrapper like this:Also apply some css rules of body on wrapper css as given below:
And keep the rest css rules in body indeed.
And Then give your footer
<div>a css ruleposition:absolute;and place it outside the wrapper<div>accordingly.