How to remove the footer completely

Latest Reply from social bookmarking service at 2013-06-06 15:59:36
We have paid for the "links-free" version of the Molecula theme and upon entering the activation key, the theme related links were indeed removed from the footer area.

What we are wanting to do however is to remove the footer area completely and make our site's layout resemble the screenshot.png file inside the Molecula folder where the footer area does not exist at all.

Since we have paid to remove the links from the footer area, all we are left with in that area are the site title and tagline. If we remove them, we are still left with the grey footer area with the text "Copyright 2013". How can we remove this whole grey area?
Hi!
I had the dame problem. I fixed it by editing the file style.css. You have to replace the following code:
#footer {
background:#313131;
color:#fff;
border-top:3px solid #4fb9e4;
}

with:
#footer {
display: none;
background:#313131;
color:#fff;
border-top:3px solid #4fb9e4;
}
}

Leave a reply

Add codeAdd image