Viewing 4 replies - 1 through 4 (of 4 total)
  • Found out there is a bug in comments.css

    Got to line 511 where you will find

    #social .social-comment-body {
    	font-size: 14px;
    	line-height: 18px;
    	overflow: hidden;
             /**
    	 * @workaround Prevent ugly overflow issues in IE6
    	 * @valid yes
    	 * @affected IE6
    	 */
             width: 100%;
    }

    Nice try to tell IE6 to be a good boy … but newer browsers don’t like this. Change the lines as follows:

    #social .social-comment-body {
    	font-size: 14px;
    	line-height: 18px;
    	overflow: hidden;
    }
    * html #social .social-comment-body {	/**
    	 * @workaround Prevent ugly overflow issues in IE6
    	 * @valid yes
    	 * @affected IE6
    	 */
    width: 100%;
    }

    This will force only IE6 to use the width-attribute.

    Hope it helps.

    Brilliant fix, thank you!

    Just in case anyone else was confused because of the way the code broke into two boxes, you are just replacing what’s in the first box with the entire content of the two boxes below.

    Thanks again!

    Thread Starter Hannes

    (@funkpunk)

    Thanks for the fix digilotta ??

    Hi,

    I encountered the same issue as Hannes and I fixed the problem with the solution provided by Digilotta. Thanks very much.
    However, I have another problem with the icons for the Avatars
    Please take a look on this screenshot:
    https://dl.dropbox.com/u/83528520/icons_issues.png

    Do you know a way to fix this issues?

    Thank you very much for your time.

    Julien

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Social] Comments don't fit into the content area’ is closed to new replies.