Mobile app version of vmapp.org
Login or Join
Phylliss660

: Comments section being indented by mysterious CSS I use Disqus comments plugin for Wordpress, and the comments section is indented to the right like a blockquote is. The code appearing in the

@Phylliss660

Posted in: #Comments #Css

I use Disqus comments plugin for Wordpress, and the comments section is indented to the right like a blockquote is.

The code appearing in the front end post is:

<div id="disqus_thread">
<div id="dsq-content">
<ul id="dsq-comments">
</ul>
</div>
</div>


I cannot find any instance of disqus_thread or dsq using a search of the theme folder; not that searching inside file in Windows 7 isn't a complete pain in the arse.

Can you see why this is happening? Example post here.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Phylliss660

1 Comments

Sorted by latest first Latest Oldest Best

 

@Jessie594

Your #dsq -content div has a margin-left value of 30px. Add the following to the bottom of your WordPress theme's stylesheet to override it:

div#content div#disqus_thread div#dsq-content.clearfix{
margin-left:0;
}


To edit a theme's stylesheet, go to the Appearance > Editor panel in the WordPress admin area.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme