In the attached images, the intension seems to be to get it to read "login or register to post comments". But, because of the CSS issue, it reads, "login register or to post comments". I am including my temporary fix below.

CAUSE:
omega-visuals.css - line 193
float:left;

WORKAROUND:
li.comment_forbidden span a{
float:none;
display:table-cell;
}

CommentFileSizeAuthor
#1 omega_.comment_forbidden.patch561 bytesahwebd
Screen Shot 2011-09-30 at 9.19.39 AM.png6.57 KBAnonymous (not verified)
Screen Shot 2011-09-30 at 9.20.13 AM.png6.47 KBAnonymous (not verified)
Screen Shot 2011-09-30 at 9.20.40 AM.png26.18 KBAnonymous (not verified)

Comments

ahwebd’s picture

StatusFileSize
new561 bytes

excluding ".comment_forbidden" in the css selector resolves the issue:

.node-links ul li:not(.comment_forbidden) a,
.comment-links ul li:not(.comment_forbidden) a {

Note: the negation "not" is css3, and most browsers now support it.

patch for omega-7.x-3.0 attached

edit: new issue submitted for omega