Показать сообщение отдельно
awarior вне форума      Старый как убрать пробелы между таблицами #1  
awarior
Частый Гость
Регистрация: 27.03.2005
Сообщения: 43


Пожаловаться на это сообщениеОтветить с цитированием

Посмотреть профиль Отправить персональное сообщение для awarior Найти все сообщения от awarior Добавить awarior в список друзей  
31.03.2006, 20:35

PHP код:
<?php

/**************************************************  **********/
/* OpenTable Functions                                      */
/*                                                          */
/* Define the tables look&feel for you whole site. For this */
/* we have two options: OpenTable and OpenTable2 functions. */
/* Then we have CloseTable and CloseTable2 function to      */
/* properly close our tables. The difference is that        */
/* OpenTable has a 100% width and OpenTable2 has a width    */
/* according with the table content                         */
/**************************************************  **********/

function OpenTable() {
    global 
$bgcolor1$bgcolor2;
    echo 
"<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\">
  <tr>
    <td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\">
        <tr>
          <td bgcolor=\"#A9B8C2\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\">
              <tr>
                <td bgcolor=\"#FFFFFF\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
                    <tr>
                      <td bgcolor=\"#FFFFFF\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\">
                          <tr>
                            <td>"
;
}

function 
CloseTable() {
    echo 
"</td>
                          </tr>
                        </table></td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
        </tr>
      </table>
      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"tbl\"><tr>
<td class=\"tbll\"><img src=\"themes/iCGstation/forums/images/spacer.gif\" alt=\"\" width=\"8\" height=\"4\" /></td>
<td class=\"tblbot\"><img src=\"themes/iCGstation/forums/images/spacer.gif\" alt=\"\" width=\"8\" height=\"4\" /></td>
<td class=\"tblr\"><img src=\"themes/iCGstation/forums/images/spacer.gif\" alt=\"\" width=\"8\" height=\"4\" /></td>
</tr></table>
      </td>
  </tr>
</table>
"
;
}

function 
OpenTable2() {
    global 
$bgcolor1$bgcolor2;
    echo 
"<table align=\"center\" width=\"50%\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\">
  <tr>
    <td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\">
        <tr>
          <td bgcolor=\"#A9B8C2\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\">
              <tr>
                <td bgcolor=\"#FFFFFF\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
                    <tr>
                      <td bgcolor=\"#FFFFFF\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\">
                          <tr>
                            <td>"
;
}

function 
CloseTable2() {
    echo 
"</td>
                          </tr>
                        </table></td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
        </tr>
      </table>
      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"tbl\"><tr>
<td class=\"tbll\"><img src=\"themes/iCGstation/forums/images/spacer.gif\" alt=\"\" width=\"8\" height=\"4\" /></td>
<td class=\"tblbot\"><img src=\"themes/iCGstation/forums/images/spacer.gif\" alt=\"\" width=\"8\" height=\"4\" /></td>
<td class=\"tblr\"><img src=\"themes/iCGstation/forums/images/spacer.gif\" alt=\"\" width=\"8\" height=\"4\" /></td>
</tr></table>
      </td>
  </tr>
</table>
"
;
}

?>