zyml / project-ar2

Free WordPress magazine theme. Arras 2.0.
http://www.arrastheme.com/
GNU General Public License v2.0
78 stars 52 forks source link

Padding Needed For Comments When Using Disqus 2012 #5

Closed magaman closed 12 years ago

magaman commented 12 years ago

Using the latest version of Disqus for comments the comment area has no padding on the left side, causing it to meet right up to the sidebar. They suggest the following:

"Disqus 2012 is set to fill 100% of its parent HTML element and has no margin or padding set on its

. This means Disqus 2012 often looks best when its parent container gives it some margin or padding."

Adding this to the css fixes the issue

disqus_thread {

padding: 0 1em 0 1em;

}

zyml commented 12 years ago

I've did a somewhat similar tweak for arrastheme.com in style.css, will push it to the main code as well:

#comments {
    margin: 1em .75em;  
}