How to Remove Disqus footer from webpage

前端 未结 5 798
遥遥无期
遥遥无期 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;
    }
    
    0 讨论(0)
  • 2021-02-13 14:25

    I was under the impression that the new disqus uses an iframe and therefore custom CSS can't be applied:

    http://help.disqus.com/customer/portal/articles/526768-introducing-the-new-disqus-and-f-a-q-

    For the most part, customization is different in the new Disqus because we decided to completely re-implement our commenting embed inside of an iframe. This iframe is hosted on disqus.com and, as such, the browser won't let your website apply styles to it using CSS statements.

    0 讨论(0)
  • 2021-02-13 14:26

    You can use negative margins and overflow hidden.

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

    0 讨论(0)
  • 2021-02-13 14:39

    In the Joomla administration panel go to administrator - extensions - plugin manager and disable Disqus. Example screenshot below:

    enter image description here

    0 讨论(0)
  • 2021-02-13 14:42

    Outside of the technical workarounds, there is a legitimate way to do this. According to the website, you can remove this with a Pro subscription, which is around $100/month at the time of this answer.

    https://<accountname>.disqus.com/admin/settings/general/
    

    0 讨论(0)
提交回复
热议问题