Browse Source

Fixing preview iframe see BT#9161

Julio Montoya 10 years ago
parent
commit
5a3b275789
2 changed files with 2 additions and 1 deletions
  1. 1 0
      main/css/base.css
  2. 1 1
      main/forum/viewthread_flat.inc.php

+ 1 - 0
main/css/base.css

@@ -4303,6 +4303,7 @@ a.forum_group_link {
     /*border-bottom: 1px solid #666666;*/
     margin-bottom: 10px;
     vertical-align: top;
+    background:white;
 }
 .forum_message_post_text_2_be_approved {
     /*border-bottom: 1px solid #666666;*/

+ 1 - 1
main/forum/viewthread_flat.inc.php

@@ -18,7 +18,7 @@ if (isset($current_thread['thread_id'])) {
     if (!empty($rows)) {
         foreach ($rows as $row) {
 
-            echo '<table width="100%" class="forum_table" cellspacing="5" border="0">';
+            echo '<table width="100%" height="100%" class="forum_table" cellspacing="5" border="0">';
             // the style depends on the status of the message: approved or not
             if ($row['visible']=='0') {
                 $titleclass='forum_message_post_title_2_be_approved';