Delete or change Footer

0

I am editing a blogger page but in the footer there is a "watermark" so to speak. The text says 'Designed by Free Blogger Templates' And I already modified it in HTML and I changed the link and everything, but that still appears. I try to eliminate it but when I open the page, it redirects me to another one.

Should there be a way to eliminate that? To not buy the theme, some script or something.

Here I leave the code because it is long:

Look for the code: See code

<footer class='contactFooter'>
    <div class='container'>
      <!-- COPYRIGHT -->
      <div class='col-md-12 col-sm-12 col-xs-12 footerLeft'>
        Design By <a herf='http://www.templateclue.com/' href='http://www.templateclue.com/' id='templateclue' ref='dofollow' title='Free Blogger Templates'>Free Blogger Templates</a> &amp; <a href="http://mybloggerthemes.com" rel="dofollow" style="color: #c49b66;" title="Blogger Template">MyBloggerThemes</a>
      </div>
      <!-- SOCIAL ICONS -->

    </div>
    <!-- END container-->
  </footer>

I really do not know if you can, but you know more.

    
asked by Jenio158 13.07.2017 в 20:41
source

2 answers

1

This is very simple:

<div class="contactFooter">
<div class="container">
<!-- copyright -->
 <div class='col-md-12 col-sm-12 col-xs-12 footerLeft'>
   <!-- El texto que estaba dentro de este DIV hacia que miraras esa "marca de agua" -->
  </div>
</div>
<!-- END container-->

    
answered by 22.07.2017 в 19:19
0

Maybe a% J_% co_ serves:

function quitarFooter(){
  document.getElementsByTagName("footer")[0].remove();
  
  //No importante 
  document.getElementsByTagName("input")[0].remove();
  document.body.innerHTML = "footer removido!!";
}
<footer class='contactFooter'>
    <div class='container'>
      <!-- COPYRIGHT -->
      <div class='col-md-12 col-sm-12 col-xs-12 footerLeft'>
        Design By <a herf='http://www.templateclue.com/' href='http://www.templateclue.com/' id='templateclue' ref='dofollow' title='Free Blogger Templates'>Free Blogger Templates</a> &amp; <a href="http://mybloggerthemes.com" rel="dofollow" style="color: #c49b66;" title="Blogger Template">MyBloggerThemes</a>
      </div>
      <!-- SOCIAL ICONS -->

    </div>
    <!-- END container-->
  </footer>
  
  <!-- No importante -->
  <input type="button" onclick="quitarFooter()" value="Adiós footer"/>
    
answered by 02.08.2017 в 05:18