Hi Michelle,

I'm experiencing a problem where the delete/edit/reply buttons on thread replies are showing up blank, but on the original post they appear to be fine (the reply button at least).

I've attached a screenshot showing the problem here.

Thanks SO much for this module! (And advanced profile too!)

CommentFileSizeAuthor
comment_buttons.png35.28 KBJConnell

Comments

michelle’s picture

Component: User interface » Theming
Category: bug » support
Status: Active » Closed (won't fix)

Looks like the Bluebreeze theme. I have the same problem on socnet. Your site's theme CSS is loaded last so it will override advforum's CSS where the class/ID names are the same. It's not something I can fix from within advforum. If you have a theme that has CSS for the same bits as advforum, you need to go in your theme and make it look right with advforum. A quick fix is to just copy the whole link as button CSS over. I'm hoping theme maintainers will start doing some advforum themes to make this easier.

Michelle

JConnell’s picture

Thanks Michelle!

For those that are curious, this is what I did to fix this issue in the Denver theme:

Open themes/denver/style.css and find this:

li.comment_delete a {
  background: url(images/mini-trash.gif) no-repeat 0 2px;
  padding-left: 15px;
}

li.comment_edit a {
  background: url(images/mini-edit.gif) no-repeat 0 2px;
  padding-left: 15px;
}

li.comment_reply a {
  background: url(images/mini-comments.gif) no-repeat 0 2px;
  padding-left: 15px;
}

Change it to:

li.comment_delete a {
  padding-left: 0px;
}

li.comment_edit a {
  padding-left: 0px;
}

li.comment_reply a {
  padding-left: 0px;
}