Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
[Dúvida] Centralizar Tags do fórum
EmoXxX   19 Nov, 2011, 12:02 pm
#1
Olá galera.
Venho aqui com mais uma dúvida.
Como posso fazer para centralizar as Tags do meu fórum ?
Aqui uma imagem, para vocês terem uma noção do que estou falando.

[Imagen: 2myc5g7.png]

Gostaria de centralizar o que esta contornado na imagem.
Deixar no meio, acho que daria um toque legal no visual do fórum.
Muito obrigado, e aguardo respostas.
Omar G.   19 Nov, 2011, 3:46 pm
#2
Foco é um pouco confuso essa parte do forum para fazer isso você deve editar o índice(index) de modelo.
EmoXxX   19 Nov, 2011, 5:00 pm
#3
Sim eu sei, só gostaria de saber com o local (html) que devo centralizar, para centralizar aquela área que mostra na foto.
Cluster   19 Nov, 2011, 5:19 pm
#4
colar aqui o conteúdo do seu index de modelo

:)
EmoXxX   19 Nov, 2011, 7:06 pm
#5
Aguardo respostas.
Código PHP:
<?php 
<html>
<
head>
<
title>{$mybb->settings['bbname']}</title>
{
$headerinclude}
<
script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</
head>
<
body>
{
$header}
{
$ps_header_index}
{
$itph}
{
$forums}
{
$ps_footer_index}
{
$itpf}
{
$boardstats}

<
dl class="forum_legend smalltext">
<
dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<
dd>{$lang->new_posts}</dd>

<
dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<
dd>{$lang->no_new_posts}</dd>

<
dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
<
dd>{$lang->forum_locked}</dd>
</
dl>
<
br style="clear: both" />
{
$footer}
</
body>
</
html>
Cluster   19 Nov, 2011, 8:08 pm
#6
replace

Código PHP:
<?php 
<html>
<
head>
<
title>{$mybb->settings['bbname']}</title>
{
$headerinclude}
<
script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</
head>
<
body>
{
$header}
{
$ps_header_index}
{
$itph}
{
$forums}
{
$ps_footer_index}
{
$itpf}
{
$boardstats}
<
div align="center">
<
dl class="forum_legend smalltext">
<
dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<
dd>{$lang->new_posts}</dd>

<
dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<
dd>{$lang->no_new_posts}</dd>

<
dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
<
dd>{$lang->forum_locked}</dd>
</
dl>
</
div>
<
br style="clear: both" />
{
$footer}
</
body>
</
html>

:)
EmoXxX   20 Nov, 2011, 12:00 pm
#7
Cluster, substitui pelo código que você enviou, e infelizmente, não alterou em nada no fórum, ele simplesmente não centralizou a imagem.
Não intendi porque.
Aqui uma imagem de como continua o fórum.
[Imagen: 287emi9.png]

Obrigado e aguardo respostas.
Omar G.   20 Nov, 2011, 5:52 pm
#8
Tente mudar isso:
Código PHP:
<?php 
<div align="center">
<
dl class="forum_legend smalltext">

Portanto:
Código PHP:
<?php 
<div align="center" style="text-align: center; margin: auto auto; width: XXpx;">
<
dl class="forum_legend smalltext">

Alterar XX com um número que resolve o seu problema.
Jonatan H.   22 Nov, 2011, 5:33 pm
#9
Código PHP:
<?php 
<html>
<
head>
<
title>{$mybb->settings['bbname']}</title>
{
$headerinclude}
<
script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</
head>
<
body>
{
$header}
{
$ps_header_index}
{
$itph}
{
$forums}
{
$ps_footer_index}
{
$itpf}
{
$boardstats}

<
dl style="text-align:center;">
<
img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" />&nbsp;{$lang->new_posts}
&
nbsp;
<
img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" />&nbsp;{$lang->no_new_posts}
&
nbsp;
<
img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" />&nbsp;{$lang->forum_locked}
</
dl>

<
br style="clear: both" />
{
$footer}
</
body>
</
html>

Ponha no seu index.
  
Powered By MyBB, © 2002-2025 MyBB Group.
Made with by Curves UI.