because of floating problems i recommend to change the first line in the css file from

.comment-click, .comment-link {
display: block;
float: left;
padding-right: 1em;
}

to

.comment-click, .comment-link {
display: inline-block;
padding-right: 1em;
}

Comments

simon georges’s picture

Version: 7.x-1.0-beta1 » 7.x-1.x-dev
Status: Active » Needs review
StatusFileSize
new442 bytes

According patch attached. If working, all credits goes @konsul.

simon georges’s picture

Title: changing some css » Avoid floating issues by altering the css