Posts: 2,894
Threads: 59
Joined: Jun 2010
Okay, so maybe reduce the text size of the bottom right elements. Thanks, I'll try that out.
Also, if a user submits a reply to a comment which doesn't exist, I don't think a ban would be appropriate because the administrator may have deleted the original comment while the user was replying to it.
Have
you completed
the interview?
Posts: 535
Threads: 31
Joined: Jul 2010
Yeah, the ban can be removed. If someone messes with the value, then the comment won't be visible anyway. However, a 10 min check might work.
I'm giving you three guesses...
Posts: 2,894
Threads: 59
Joined: Jun 2010
When someone clicks on the reset link to undo the reply, it would be good if the page position stayed the same and didn't jump anywhere. So far the only way I have been able to achieve this is to have the reset link point to an anchor which doesn't exist, like #reset. And that's only been tested in Firefox.
Edit: It works in all browsers.
Have
you completed
the interview?
Posts: 535
Threads: 31
Joined: Jul 2010
Or, you can try changing the <a> tag into a <span> tag with an underline, a cursor change, and a color property in it's css.
Code:
.reset_reply{
text-decoration:underline;
color: #00B;
cursor: pointer;
}
I'm giving you three guesses...
Posts: 2,894
Threads: 59
Joined: Jun 2010
Yeah that would also work.
Have
you completed
the interview?
Posts: 2,894
Threads: 59
Joined: Jun 2010
After a comment is successfully submitted, the reset link still shows even though the reply name says "no one". It seems that the hidden field which stores the comment ID is remembering the ID even after submission. Did yours have that problem too?
Have
you completed
the interview?
Posts: 2,894
Threads: 59
Joined: Jun 2010
Fixed. I got the script to unset the ID after comment submission.
Have
you completed
the interview?
Posts: 2,894
Threads: 59
Joined: Jun 2010
We need to fix how the negative margin-right property is having no effect on the reply box.
Have
you completed
the interview?
Posts: 535
Threads: 31
Joined: Jul 2010
What do you mean? Everything seems to be working. If you remove the margin-right property, the extra width on the side will be removed. The margin-left property "indents" the box. margin-right works for me.
I'm giving you three guesses...
Posts: 2,894
Threads: 59
Joined: Jun 2010
Removed the margin-right property and it looks good now.
Now I need to add the pagination.
Have
you completed
the interview?