无法删除网站的页脚链接

Cannot remove footer links of a website

我有一个博客主题,它有模板所有者的页脚 links:http://www.oddthemes.com/2015/06/style-magazine-blogger-template.html

如果我删除网站的 link 然后它会被重定向到 oddthemes.com 那么我怎样才能摆脱它们。

如果您想了解更多信息,请告诉我。

<div class="lefts">
  Copyright © 2014 
  <a class="sitename" href="http://style-oddthemes.blogspot.in/" title="Style Magazine">Style Magazine.
  </a>
  Designed by <a href="http://www.oddthemes.com/" id="blogg" rel="dofollow">OddThemes</a>

只需用 div 包装您要删除的代码,如下所示:

<div class="someDiv">
    Designed by <a href="http://www.oddthemes.com/" id="blogg" rel="dofollow">OddThemes</a>
</div>

然后将此添加到您的 css:

.someDiv {
    display:none;
}

我不建议删除该属性,因为设计不属于您

您应该联系设计师并以低于您的销售价格的价格从他那里购买。这样,您和设计师都将从该网站中获益。

我想说这可能是您的 JS 检查您没有更改代码的原因,请尝试检查那里。另外,这不会侵犯版权吗,因为你没有注明原作者的姓名?

Using jquery or JavaScript to you can remove owner site(link and text) from footer.

<script type='text/javascript'>  
jQuery(document).ready(function($){
$(".lefts").append("Design by <a href='http://www.waafrikaonline.com/'> OddThemes</a>. All Rights Reserved.");
$("#mycontent").find('a').attr("href", "http://www.waafrikaonline.com/");
$("#mycontent").find('a:first').text("WAAFRIKA ONLINE");
});  
</script>

By using css (class or id) to you can append "href" links and "text".i have modified as per your site if it wont work just replace exact css(class and id).