summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-10-27 16:13:04 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-10-27 16:13:04 -0300
commit431e69b51055e799805f20d221f4e3c3a7575ea2 (patch)
treedfba4933ac3f2df341d6a4f3bf6b4db35f6872a8
parent348c42303f03f193dacfbe792c88a13647a65af7 (diff)
downloadaskbot-431e69b51055e799805f20d221f4e3c3a7575ea2.tar.gz
askbot-431e69b51055e799805f20d221f4e3c3a7575ea2.tar.bz2
askbot-431e69b51055e799805f20d221f4e3c3a7575ea2.zip
changed table, tr and td elements in the answer_card.html to div - most functions seem to work, but did not test accept best answer
-rw-r--r--askbot/skins/default/templates/question/answer_card.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/askbot/skins/default/templates/question/answer_card.html b/askbot/skins/default/templates/question/answer_card.html
index f623294f..9b759a20 100644
--- a/askbot/skins/default/templates/question/answer_card.html
+++ b/askbot/skins/default/templates/question/answer_card.html
@@ -2,14 +2,14 @@
<div
id="answer-container-{{ answer.id }}"
class="{{ macros.answer_classes(answer, question) }}">
- <table class="answer-table">
- <tr>
- <td>
+ <div class="answer-table">
+ <div>
+ <div>
<div class="vote-buttons">
{% include "question/answer_vote_buttons.html" %}
</div>
- </td>
- <td>
+ </div>
+ <div>
<div class="item-right">
<div class="answer-body">
<div class="post-update-info-container">
@@ -26,7 +26,7 @@
<h1 id="comment-title">Comments</h1>
{% include "question/answer_comments.html" %}
</div>
- </td>
- </tr>
- </table>
+ </div>
+ </div>
+ </div>
</div>