X_Silver / Bloco do Portal
-
Night Angel
- Membro Recente

- Mensagens: 262
- Registrado em: 26 Mai 2011, 22:54
- Localização: Planeta Terra
- Contato:
Re: X_Silver / Bloco do Portal
Faça um outro teste.
Substitua todo o conteúdo do news_compact_center.html por...
Depois poste o printsecreen.
Abraço.
Substitua todo o conteúdo do news_compact_center.html por...
Código: Selecionar todos
<!-- BEGIN news_row -->
<!-- IF news_row.S_NO_TOPICS -->
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
<div class="post bg2" style="margin-bottom: 0px">
<div class="inner"><span class="portal-corners-top-inner"></span>
<span style="text-align: center;"><strong>{L_NO_NEWS}</strong></span>
<span class="portal-corners-bottom-inner"></span></div>
</div>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ELSE -->
<!-- IF news_row.S_FIRST_ROW -->
<a name="n"></a>
{$C_BLOCK_H_L}TESTANDO{$C_BLOCK_H_R}
{$CC_BLOCK_H_L}
<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{$TITLE}</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{L_REPLIES}</dd>
<dd class="views" style="width: 11%">{L_VIEWS}</dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span>{L_LAST_POST}</span></dd>
{$CC_BLOCK_H_R}
<ul class="topiclist topics">
<!-- ENDIF -->
<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
<dl class="icon" style="background-image: url({news_row.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
<dt style="<!-- IF S_DISPLAY_NEWS_RVS -->width: 44%;<!-- ELSE -->width: 60%;<!-- ENDIF --> <!-- IF news_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{news_row.TOPIC_FOLDER_IMG_ALT}"><!-- IF news_row.S_UNREAD_TOPIC --><a href="{news_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF news_row.ATTACH_ICON_IMG -->{news_row.ATTACH_ICON_IMG} <!-- ENDIF --><!-- IF news_row.S_POLL --><strong>{L_VIEW_TOPIC_POLL}</strong><!-- ENDIF --><a href="{news_row.U_VIEW_COMMENTS}" title="{news_row.TITLE}" class="topictitle">{news_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> • <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> • <!-- ENDIF -->
<!-- IF news_row.PAGINATION --><strong class="pagination"><span>{news_row.PAGINATION}</span></strong><!-- ENDIF -->
<br />{L_POSTED} {L_POST_BY_AUTHOR} {news_row.POSTER_FULL} » {news_row.TIME}
<!-- IF news_row.FORUM_NAME -->
<br />{L_FORUM}: <a href="{news_row.U_VIEWFORUM}" style="font-weight: bold;">{news_row.FORUM_NAME}</a>
<!-- ENDIF -->
<!-- IF not S_DISPLAY_NEWS_RVS --><!-- IF news_row.FORUM_NAME -->• <!-- ENDIF -->{L_REPLIES}: <strong>{news_row.REPLIES}</strong> • {L_VIEWS}: <strong>{news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
<dd class="views" style="width: 11%">{news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span><dfn>{L_LAST_POST}</dfn>{L_POST_BY_AUTHOR} {news_row.USERNAME_FULL_LAST} <!-- IF news_row.S_UNREAD_INFO --><a href="{news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><br />
{news_row.LAST_POST_TIME}</span>
</dd>
</dl>
</li>
<!-- IF news_row.S_LAST_ROW -->
<!-- IF NP_PAGINATION or TOTAL_NEWS -->
<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg2<!-- ELSE --> bg1<!-- ENDIF -->">
<div class="topic-actions">
<div class="pagination">
{TOTAL_NEWS}
<!-- IF NP_PAGE_NUMBER --><!-- IF NP_PAGINATION --> • {NP_PAGE_NUMBER} • <span>{NP_PAGINATION}</span><!-- ELSE --> • {NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
</div>
</div>
</li>
<!-- ENDIF -->
</ul>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ENDIF -->
<!-- ENDIF -->
<!-- END news_row -->Abraço.

[DICA] Antes de abrir um Novo Tópico, procure saber se a sua dúvida já foi respondida. Pesquise no Google por palavras(em inglês também) relacionadas à ela, somado à palavra "phpbb".
-
Night Angel
- Membro Recente

- Mensagens: 262
- Registrado em: 26 Mai 2011, 22:54
- Localização: Planeta Terra
- Contato:
Re: X_Silver / Bloco do Portal
:arrow: Você está alterando a borda BLOCO por BLOCO ou está alterando apenas no arquivo _block_config.html para que a alteração seja aplicada em todos os BLOCOS de uma só vez :?:
Digo isto porque o bloco central das "enquetes"(poll_center.html), por exemplo, originalmente abre com
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R} e fecha com {$C_BLOCK_F_L}{$C_BLOCK_F_R}.
Esta abertura e fechamento é que determina o estilo do BLOCO.
Veja que na imagem que você postou, o BLOCO da enquete está com a borda superior e inferior corretas.
Tanto o {$C_BLOCK_H_L} como o {$C_BLOCK_H_R}, {$C_BLOCK_F_L} e {$C_BLOCK_F_R} são definidos no arquivo _block_config.html, nas seguintes linhas:
Isso foi feito para facilitar o desenvolvedor na confecção dos blocos, porque ao invés dele abrir todos os BLOCOS com...
ele apenas coloca
Abraço.
Digo isto porque o bloco central das "enquetes"(poll_center.html), por exemplo, originalmente abre com
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R} e fecha com {$C_BLOCK_F_L}{$C_BLOCK_F_R}.
Esta abertura e fechamento é que determina o estilo do BLOCO.
Veja que na imagem que você postou, o BLOCO da enquete está com a borda superior e inferior corretas.
Tanto o {$C_BLOCK_H_L} como o {$C_BLOCK_H_R}, {$C_BLOCK_F_L} e {$C_BLOCK_F_R} são definidos no arquivo _block_config.html, nas seguintes linhas:
Código: Selecionar todos
<!-- DEFINE $C_BLOCK_H_L = '<div class="forabg"><div class="inner"><span class="corners-top"><span></span></span><ul class="topiclist"><li class="header"><dl class="icon"><dt>' -->
<!-- DEFINE $C_BLOCK_H_R = '</dt></dl></li></ul>' -->
<!-- DEFINE $C_BLOCK_F_L = '' -->
<!-- DEFINE $C_BLOCK_F_R = '<span class="corners-bottom"><span></span></span></div></div><br style="clear:both" />' --><div class="forabg"><div class="inner"><span class="corners-top"><span></span></span><ul class="topiclist"><li class="header"><dl class="icon"><dt>{$TITLE}</dt></dl></li></ul>...ele apenas coloca
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}.Abraço.

[DICA] Antes de abrir um Novo Tópico, procure saber se a sua dúvida já foi respondida. Pesquise no Google por palavras(em inglês também) relacionadas à ela, somado à palavra "phpbb".
Re: X_Silver / Bloco do Portal
Seja como for, tente este:
Depois poste o printscreen.
Abraço.
Código: Selecionar todos
<!-- BEGIN news_row -->
<!-- IF news_row.S_NO_TOPICS -->
<div class="c-h-l-border"><div class="c-h-r-border"><div class="c-h-c-border"><div class="c-h-title"></div></div></div></div>
<div class="v-left"><div class="v-right">
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<table class="table1" cellspacing="1">
<tbody>
<tr class="bg3">
<td >
<div class="post bg2" style="margin-bottom: 0px">
<div class="inner"><span class="portal-corners-top-inner"></span>
<span style="text-align: center;"><strong>{L_NO_NEWS}</strong></span>
<span class="portal-corners-bottom-inner"></span></div>
</div>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ELSE -->
<!-- IF news_row.S_FIRST_ROW -->
<a name="n"></a>
{$CC_BLOCK_H_L}
<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{$TITLE}</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{L_REPLIES}</dd>
<dd class="views" style="width: 11%">{L_VIEWS}</dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span>{L_LAST_POST}</span></dd>
{$CC_BLOCK_H_R}
<ul class="topiclist topics">
<!-- ENDIF -->
<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
<dl class="icon" style="background-image: url({news_row.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
<dt style="<!-- IF S_DISPLAY_NEWS_RVS -->width: 44%;<!-- ELSE -->width: 60%;<!-- ENDIF --> <!-- IF news_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{news_row.TOPIC_FOLDER_IMG_ALT}"><!-- IF news_row.S_UNREAD_TOPIC --><a href="{news_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF news_row.ATTACH_ICON_IMG -->{news_row.ATTACH_ICON_IMG} <!-- ENDIF --><!-- IF news_row.S_POLL --><strong>{L_VIEW_TOPIC_POLL}</strong><!-- ENDIF --><a href="{news_row.U_VIEW_COMMENTS}" title="{news_row.TITLE}" class="topictitle">{news_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> • <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> • <!-- ENDIF -->
<!-- IF news_row.PAGINATION --><strong class="pagination"><span>{news_row.PAGINATION}</span></strong><!-- ENDIF -->
<br />{L_POSTED} {L_POST_BY_AUTHOR} {news_row.POSTER_FULL} » {news_row.TIME}
<!-- IF news_row.FORUM_NAME -->
<br />{L_FORUM}: <a href="{news_row.U_VIEWFORUM}" style="font-weight: bold;">{news_row.FORUM_NAME}</a>
<!-- ENDIF -->
<!-- IF not S_DISPLAY_NEWS_RVS --><!-- IF news_row.FORUM_NAME -->• <!-- ENDIF -->{L_REPLIES}: <strong>{news_row.REPLIES}</strong> • {L_VIEWS}: <strong>{news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
<dd class="views" style="width: 11%">{news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span><dfn>{L_LAST_POST}</dfn>{L_POST_BY_AUTHOR} {news_row.USERNAME_FULL_LAST} <!-- IF news_row.S_UNREAD_INFO --><a href="{news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><br />
{news_row.LAST_POST_TIME}</span>
</dd>
</dl>
</li>
<!-- IF news_row.S_LAST_ROW -->
<!-- IF NP_PAGINATION or TOTAL_NEWS -->
<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg2<!-- ELSE --> bg1<!-- ENDIF -->">
<div class="topic-actions">
<div class="pagination">
{TOTAL_NEWS}
<!-- IF NP_PAGE_NUMBER --><!-- IF NP_PAGINATION --> • {NP_PAGE_NUMBER} • <span>{NP_PAGINATION}</span><!-- ELSE --> • {NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
</div>
</div>
</li>
<!-- ENDIF -->
</ul>
</div>
</td>
</tr>
</tbody>
</table></div>
<span class="corners-bottom"><span></span></span></div>
</div>
</div>
<div class="c-f-l"><div class="c-f-r"><div class="c-f-c"></div></div></div><br style="clear:both" />
<!-- ENDIF -->
<!-- ENDIF -->
<!-- END news_row -->Abraço.

[DICA] Antes de abrir um Novo Tópico, procure saber se a sua dúvida já foi respondida. Pesquise no Google por palavras(em inglês também) relacionadas à ela, somado à palavra "phpbb".
-
Night Angel
- Membro Recente

- Mensagens: 262
- Registrado em: 26 Mai 2011, 22:54
- Localização: Planeta Terra
- Contato:
Re: X_Silver / Bloco do Portal
Eu estou alterando bloco a bloco.
No fórum que está on-line os blocos funcionam normalmente
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R} e fecha com {$C_BLOCK_F_L}{$C_BLOCK_F_R}.
Agora nessa atualização do portal os blocos só estão funcionando se eu colocar assim:
Não só o bloco da Enquete..mas todos os outros estão funcionando assim
Print
http://img855.imageshack.us/img855/8749/88668974.jpg
No fórum que está on-line os blocos funcionam normalmente
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R} e fecha com {$C_BLOCK_F_L}{$C_BLOCK_F_R}.
Agora nessa atualização do portal os blocos só estão funcionando se eu colocar assim:
Código: Selecionar todos
<div class="c-h-l-border"><div class="c-h-r-border"><div class="c-h-c-border"><div class="c-h-title">{$TITLE}</div></div></div></div>
<div class="v-left"><div class="v-right">
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<table class="table1" cellspacing="1">
<tbody>
<tr class="bg3">
<td >
CONTEÚDO
</div>
</td>
</tr>
</tbody>
</table>
<span class="corners-bottom"><span></span></span></div>
</div>
</div></div>
<div class="c-f-l"><div class="c-f-r"><div class="c-f-c"> </div></div></div>
http://img855.imageshack.us/img855/8749/88668974.jpg
Re: X_Silver / Bloco do Portal
Tente este:
Depois poste o printscreen.
Abraço.
Código: Selecionar todos
<!-- BEGIN news_row -->
<!-- IF news_row.S_NO_TOPICS -->
<div class="c-h-l-border"><div class="c-h-r-border"><div class="c-h-c-border"><div class="c-h-title">{TITLE}</div></div></div></div>
<div class="v-left"><div class="v-right">
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<table class="table1" cellspacing="1">
<tbody>
<tr class="bg3">
<td >
<div class="post bg2" style="margin-bottom: 0px">
<div class="inner"><span class="portal-corners-top-inner"></span>
<span style="text-align: center;"><strong>{L_NO_NEWS}</strong></span>
<span class="portal-corners-bottom-inner"></span></div>
</div>
</td>
</tr>
</tbody>
</table></div>
<span class="corners-bottom"><span></span></span></div>
</div>
</div>
<div class="c-f-l"><div class="c-f-r"><div class="c-f-c"></div></div></div>
<!-- ELSE -->
<!-- IF news_row.S_FIRST_ROW -->
<a name="n"></a>
<div class="c-h-l-border"><div class="c-h-r-border"><div class="c-h-c-border"><div class="c-h-title"></div></div></div></div>
<div class="v-left"><div class="v-right">
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<table class="table1" cellspacing="1">
<tbody>
<tr class="bg3">
<td >
<div class="forabg"><div class="inner"><span class="corners-top"><span></span></span><ul class="topiclist"><li class="header"><dl class="icon">
<dt <!-- IF S_DISPLAY_NEWS_RVS -->style="width: 44%"<!-- ELSE -->style="width: 60%"<!-- ENDIF -->>{$TITLE}</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{L_REPLIES}</dd>
<dd class="views" style="width: 11%">{L_VIEWS}</dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span>{L_LAST_POST}</span></dd>
</dl></li></ul>
<ul class="topiclist topics">
<!-- ENDIF -->
<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
<dl class="icon" style="background-image: url({news_row.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
<dt style="<!-- IF S_DISPLAY_NEWS_RVS -->width: 44%;<!-- ELSE -->width: 60%;<!-- ENDIF --> <!-- IF news_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{news_row.TOPIC_FOLDER_IMG_ALT}"><!-- IF news_row.S_UNREAD_TOPIC --><a href="{news_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><!-- IF news_row.ATTACH_ICON_IMG -->{news_row.ATTACH_ICON_IMG} <!-- ENDIF --><!-- IF news_row.S_POLL --><strong>{L_VIEW_TOPIC_POLL}</strong><!-- ENDIF --><a href="{news_row.U_VIEW_COMMENTS}" title="{news_row.TITLE}" class="topictitle">{news_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> • <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> • <!-- ENDIF -->
<!-- IF news_row.PAGINATION --><strong class="pagination"><span>{news_row.PAGINATION}</span></strong><!-- ENDIF -->
<br />{L_POSTED} {L_POST_BY_AUTHOR} {news_row.POSTER_FULL} » {news_row.TIME}
<!-- IF news_row.FORUM_NAME -->
<br />{L_FORUM}: <a href="{news_row.U_VIEWFORUM}" style="font-weight: bold;">{news_row.FORUM_NAME}</a>
<!-- ENDIF -->
<!-- IF not S_DISPLAY_NEWS_RVS --><!-- IF news_row.FORUM_NAME -->• <!-- ENDIF -->{L_REPLIES}: <strong>{news_row.REPLIES}</strong> • {L_VIEWS}: <strong>{news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
</dt>
<!-- IF S_DISPLAY_NEWS_RVS -->
<dd class="posts" style="width: 11%">{news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
<dd class="views" style="width: 11%">{news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
<!-- ENDIF -->
<dd class="lastpost" style="width: 25%"><span><dfn>{L_LAST_POST}</dfn>{L_POST_BY_AUTHOR} {news_row.USERNAME_FULL_LAST} <!-- IF news_row.S_UNREAD_INFO --><a href="{news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><br />
{news_row.LAST_POST_TIME}</span>
</dd>
</dl>
</li>
<!-- IF news_row.S_LAST_ROW -->
<!-- IF NP_PAGINATION or TOTAL_NEWS -->
<li class="row<!-- IF news_row.S_ROW_COUNT is even --> bg2<!-- ELSE --> bg1<!-- ENDIF -->">
<div class="topic-actions">
<div class="pagination">
{TOTAL_NEWS}
<!-- IF NP_PAGE_NUMBER --><!-- IF NP_PAGINATION --> • {NP_PAGE_NUMBER} • <span>{NP_PAGINATION}</span><!-- ELSE --> • {NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
</div>
</div>
</li>
<!-- ENDIF -->
</ul>
</div>
</div>
</td>
</tr>
</tbody>
</table></div>
<span class="corners-bottom"><span></span></span></div>
</div>
</div>
<div class="c-f-l"><div class="c-f-r"><div class="c-f-c"></div></div></div>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- END news_row -->Abraço.

[DICA] Antes de abrir um Novo Tópico, procure saber se a sua dúvida já foi respondida. Pesquise no Google por palavras(em inglês também) relacionadas à ela, somado à palavra "phpbb".
-
Night Angel
- Membro Recente

- Mensagens: 262
- Registrado em: 26 Mai 2011, 22:54
- Localização: Planeta Terra
- Contato:
Re: X_Silver / Bloco do Portal
Bem, agora é ir retirando algumas tags para ver como vai ficar.
Abra no Notepad++ o conteúdo que postei em minha mensagem, escolha a "linguagem" HTML, depois ache as linhas:
Ao clicar sobre a tag
Quando estiver do jeito desejado, poste como ficou o conteúdo do arquivo junto com o printsecreen.
Abraço.
Abra no Notepad++ o conteúdo que postei em minha mensagem, escolha a "linguagem" HTML, depois ache as linhas:
Código: Selecionar todos
<div class="inner"><span class="corners-top"><span></span></span>
<table class="table1" cellspacing="1">
<tbody>
<tr class="bg3">
<td >
<div class="forabg"><div class="inner"><span class="corners-top"><span></span></span><ul class="topiclist"><li class="header"><dl class="icon"><td>, ela ficará na cor roxa. Usando a barra de rolagem para baixo você encontrará uma tag </td> também na cor roxa, já que a 1ª é de abertura e a 2ª de fechamento. Exclua estas 2 tags e veja como vai ficar. Caso não fique bom, faça o mesmo procedimento com a tag <tr class="bg3">, e assim sucessivamente com a tag <tbody> e com a <table class="table1" cellspacing="1"> até ficar da maneira desejada.Quando estiver do jeito desejado, poste como ficou o conteúdo do arquivo junto com o printsecreen.
Abraço.

[DICA] Antes de abrir um Novo Tópico, procure saber se a sua dúvida já foi respondida. Pesquise no Google por palavras(em inglês também) relacionadas à ela, somado à palavra "phpbb".
-
Night Angel
- Membro Recente

- Mensagens: 262
- Registrado em: 26 Mai 2011, 22:54
- Localização: Planeta Terra
- Contato:
Re: X_Silver / Bloco do Portal
Tentei todas essas possibilidades e nenhuma deu certo