Remove line and gap in footer ?

Posted in: Newspaper
Post count: 57

Hi,
I have changed footer to style 08, but it still show a line and a gap in footer. How can i remove all of them ?

Thank you,

  • This topic was modified 10 years by gagosg.
Post count: 22421

Hello,

The easiest way to remove the line is with css. Please add this code in the theme panel->custom css box.
.td-footer-bottom-full .td-container:before{
display:none!important
}

If you want to reduce the paddings, top and bottom, you can use this code:
.td-footer-bottom-full .td-container:before{
display:none!important
}
.td-footer-wrapper{
padding-top:0!important;
}
.td-footer-bottom-full{
padding-top:5px!important;
padding-bottom: 5px!important;
}

(You can change the padding values in the code to your preference.)
result:http://screencast.com/t/Mp3gZTS5

Thanks.

Post count: 57

Thank you, 😀
Another question: I just see LiveCSSEditor in your pic ? What is this program ? 😀

  • This reply was modified 10 years by gagosg.
Post count: 22421

Hi,
It is a google chrome extension that allows you to create your css code and apply it live. It does not save the code, it only allows you to preview the modification. You have to add the code you create in the theme panel-> custom css box.
Thank you!

Post count: 57

Thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.