How to Remove Disqus footer from webpage

前端 未结 5 826
遥遥无期
遥遥无期 2021-02-13 14:11

I want to remove the footer of Disqus plugin. Disqus works fine, but the footer looking a little iterating. I want to remove the footer so that I can only see the relevant comm

5条回答
  •  一向
    一向 (楼主)
    2021-02-13 14:26

    You can use negative margins and overflow hidden.

    #disqus_thread {
      overflow: hidden;
    
      iframe {
        margin-bottom: -54px;
      }
    }

提交回复
热议问题