Search code examples
cssblogsdisqusoctopress

Where can I customize the appearance of Disqus in my Octopress blog?


I am using Octopress for my blog. I set up Disqus and it shows up on every article. However, I really need to customize the look because right now there is literally no space between the whole disqus comment box and the right border of the browser window.

I already tried to find the correct SCSS file but I couldn't find it. Can anyone help me?


Solution

  • for anyone searching for a good answer (I am sure @Vassilis works just fine): Just go to

    octopress/sass/base/_layout.scss
    

    In that file go to

    section.comments {}
    

    and add something like this (this align the comments with your blog text)

    max-width: 500px;