open components/com_comment/jos_comment/comment.class.php
find
/* quote */
if ($this->_support_UBBcode) {
// if ($edit) $edit .= ' ';
$edit .= $this->linkQuote($id);
}
/* edit and delete */
if ($isCommentModerator) {
// if ($edit) $edit .= ' | ';
$edit .= $this->linkEdit($id);
$edit .= ' | ' . $this->linkDelete($id);
and change it to
/* quote */
if ($this->_support_UBBcode) {
$edit .= $this->linkQuote($id);
}
/* edit and delete */
if ($isCommentModerator) {
$edit .= $this->linkEdit($id);
$edit .= $this->linkDelete($id);
}
Now you can use css to style the template. I will add this changes to beta2
The right way is to style this through the template and not to hardcode it.
thanks!