How to Remove Disqus footer from webpage

前端 未结 5 811
遥遥无期
遥遥无期 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:24

    In your CSS add:

    #disqus_thread {
         position: relative;
    }
    #disqus_thread:after {
         content: "";
         display: block;
         height: 55px;
         width: 100%;
         position: absolute;
         bottom: 0;
         background: white;
    }
    

提交回复
热议问题