• Hello,
    I’m running wordpress 4.2.3 (http://www.dpapazov.com), with a plugin called Related post slider. However, there is a strange white space between the content of an article (under which is the related post slider) and the comment section.
    Here is screenshot:
    of what I’m talking about.

    Does someone has an idea how to remove this blank space?

    Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • The first blank space is caused by a margin-top property for the post tags. The second blank space is caused by a margin-top property for the comments section. You can remove that extra space by adding this CSS rule:

    .blog-left article .post-tags,
    .blog-left article #comments,
    #respond {
        margin-top: 0;
    }

    Thread Starter slavipz

    (@slavipz)

    Thanks CrouchingBruin,
    i added that to the css, however it is still the same.
    You can have a look here
    i did not see any change after adding the code :/

    Regards

    OK, so you added the CSS inside of a media query, which is why you will only see the change if your screen width is less than 767px. Take the rule out from where you have it and move it to the very end of your stylesheet.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strange blank space appearing between article content and comments’ is closed to new replies.