Viewtopic_body.tpl style trouble

Есть любые вопросы, связанные со стилями/темами для phpBB 2.0.x? Задайте их здесь!

Viewtopic_body.tpl style trouble

Сообщение bartezas16 10.03.2007 20:25

How move to left these icons (see this http://img105.imageshack.us/img105/1195/howzv5.png ) in my viewtopic_body.tpl?Please fix my viewtopic_body.tpl some wrong lines :

Код: Выделить всё
<td class="row1" width="100%" colspan="2" valign="bottom" nowrap="nowrap"><table width="100%" height="18" cellspacing="0" cellpadding="0" border="0">
     <tr>
               <td width="100%" colspan="2"  height="28" valign="middle" nowrap="nowrap"><span class="nav">
               <a href="#top" class="nav"><img src="{I_GO_TOP}" border="0" alt="{L_BACK_TO_TOP}" title="{L_BACK_TO_TOP}" /></a>{postrow.BUTTONS_PANEL}</tr></span>
         </table>
      </td>
      </tr>
   <tr>
      <td class="spacerow" colspan="2"><img src="{I_SPACER}" alt="" width="1" height="1" /></td>
   </tr>
   <!-- END postrow -->
bartezas16
phpBB 1.2.1
 
Сообщения: 29
Зарегистрирован: 13.02.2007 22:12


Сообщение rxu 10.03.2007 20:37

Can you show how the BUTTONS_PANEL is generating?
Изображение
Аватара пользователя
rxu
phpBB Guru
 
Сообщения: 4606
Зарегистрирован: 12.05.2006 17:16
Откуда: Красноярск

Сообщение bartezas16 12.03.2007 15:55

rxu писал(а):Can you show how the BUTTONS_PANEL is generating?


It's PCP (Profile Control Panel) mod.So but what sort of file I need to change to fix it?Because i think trouble isn't in viewtopic_body.tpl file :/
bartezas16
phpBB 1.2.1
 
Сообщения: 29
Зарегистрирован: 13.02.2007 22:12

Сообщение rxu 12.03.2007 16:45

bartezas16 писал(а):It's PCP (Profile Control Panel) mod.

What version? I've checked v.2.0.0 and found that the string in viewtopic_body.php is different:
Код: Выделить всё
<tr>
      <td class="{postrow.ROW_CLASS}" width="150" align="left" valign="middle"><span class="nav"><a href="#top" class="nav">{L_BACK_TO_TOP}</a></span></td>
      <td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="bottom" nowrap="nowrap"><table cellspacing="0" cellpadding="0" border="0" height="18" width="18"><tr>{postrow.BUTTONS_PANEL}</tr></table></td>
   </tr>


Anyway, maybe it's a part of profilcp/def/def_usermaps.php starting with:

Код: Выделить всё
   'PHPBB.viewtopic.buttons' => array(
      'title'      => '',
      'fields'   => array(
         'username' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
Изображение
Аватара пользователя
rxu
phpBB Guru
 
Сообщения: 4606
Зарегистрирован: 12.05.2006 17:16
Откуда: Красноярск

Сообщение bartezas16 12.03.2007 22:42

Yeah my version is v.2.0.0 too.In viewtopic_vody.tpl is my little change.Now i my result is http://img162.imageshack.us/img162/3959/95640752fe8.png and
http://img528.imageshack.us/img528/3971/74436012ot5.png

After i removed width="100%"

Код: Выделить всё
<tr>
               <td valign="middle" nowrap="nowrap"><span class="nav">
               <a href="#top" class="nav"><img src="{I_GO_TOP}" border="0" alt="{L_BACK_TO_TOP}" title="{L_BACK_TO_TOP}" /></a>{postrow.BUTTONS_PANEL}</tr></span>
         </table>
      </td>
      </tr>
   <tr>


But how remove space from icons and make it both?I think is trouble at profilcp/def/def_usermaps.php

these lines:


Код: Выделить всё
   'PHPBB.viewtopic.buttons' => array(
      'title'      => '',
      'fields'   => array(
         'username' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_birthday' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_my_friend' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_my_ignore' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_pm' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_email' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_website' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_aim' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_yim' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_msnm' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_icq' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s</span></td>',
         ),
      ),
   ),


How fix that?
bartezas16
phpBB 1.2.1
 
Сообщения: 29
Зарегистрирован: 13.02.2007 22:12

Сообщение rxu 14.03.2007 16:48

Код: Выделить всё
<tr>
               <td valign="middle" nowrap="nowrap"><span class="nav">
               <a href="#top" class="nav"><img src="{I_GO_TOP}" border="0" alt="{L_BACK_TO_TOP}" title="{L_BACK_TO_TOP}" /></a>{postrow.BUTTONS_PANEL}</tr></span>
         </table>
      </td>
      </tr>
   <tr>


Looks like your changes are not quite right. Maybe it should look like this :?:
Код: Выделить всё
<tr>
               <td valign="middle" nowrap="nowrap"><span class="nav">
               <a href="#top" class="nav"><img src="{I_GO_TOP}" border="0" alt="{L_BACK_TO_TOP}" title="{L_BACK_TO_TOP}" /></a></td>{postrow.BUTTONS_PANEL}</span>
         </table>
</tr>
<tr>
Изображение
Аватара пользователя
rxu
phpBB Guru
 
Сообщения: 4606
Зарегистрирован: 12.05.2006 17:16
Откуда: Красноярск

Сообщение bartezas16 16.03.2007 15:41

rxu писал(а):
Код: Выделить всё
<tr>
               <td valign="middle" nowrap="nowrap"><span class="nav">
               <a href="#top" class="nav"><img src="{I_GO_TOP}" border="0" alt="{L_BACK_TO_TOP}" title="{L_BACK_TO_TOP}" /></a>{postrow.BUTTONS_PANEL}</tr></span>
         </table>
      </td>
      </tr>
   <tr>


Looks like your changes are not quite right. Maybe it should look like this :?:
Код: Выделить всё
<tr>
               <td valign="middle" nowrap="nowrap"><span class="nav">
               <a href="#top" class="nav"><img src="{I_GO_TOP}" border="0" alt="{L_BACK_TO_TOP}" title="{L_BACK_TO_TOP}" /></a></td>{postrow.BUTTONS_PANEL}</span>
         </table>
</tr>
<tr>



No still that some problem.Maybe need change this lines:

Код: Выделить всё
'PHPBB.viewtopic.buttons' => array(
      'title'      => '',
      'fields'   => array(
         'username' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_birthday' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_my_friend' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_my_ignore' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_pm' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_email' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_website' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_aim' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_yim' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_msnm' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s&nbsp;</span></td>',
         ),
         'user_icq' => array(
            'img'          => true,
            'style'        => '<td valign="absbottom" nowrap="nowrap"><span class="gensmall">%s</span></td>',
         ),
      ),
   ),


ofcourse if you or anybody can :)
bartezas16
phpBB 1.2.1
 
Сообщения: 29
Зарегистрирован: 13.02.2007 22:12

Сообщение rxu 16.03.2007 21:16

Could you attach whole viewtopic_body.tpl here as an archive?
Изображение
Аватара пользователя
rxu
phpBB Guru
 
Сообщения: 4606
Зарегистрирован: 12.05.2006 17:16
Откуда: Красноярск


Вернуться в Стили для phpBB 2.0.x

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 0